Skip to content

Commit

Permalink
test(e2e): update all e2e tests to use a local path to ionic
Browse files Browse the repository at this point in the history
this lets type errors to show up during development

closes #6366
  • Loading branch information
brandyscarney committed Apr 29, 2016
1 parent 77b21b2 commit 45e37ce
Show file tree
Hide file tree
Showing 107 changed files with 111 additions and 111 deletions.
2 changes: 1 addition & 1 deletion ionic/components/action-sheet/test/basic/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {App, Page, ActionSheet, Alert, Modal, NavController, ViewController, Platform} from 'ionic-angular';
import {App, Page, ActionSheet, Alert, Modal, NavController, ViewController, Platform} from '../../../../../ionic';


@Page({
Expand Down
2 changes: 1 addition & 1 deletion ionic/components/alert/test/basic/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {App, Page, Alert, Modal, NavController, ViewController} from 'ionic-angular';
import {App, Page, Alert, Modal, NavController, ViewController} from '../../../../../ionic';


@Page({
Expand Down
2 changes: 1 addition & 1 deletion ionic/components/alert/test/dismiss/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Alert, Loading, NavController, App, Page } from 'ionic-angular/index';
import { Alert, Loading, NavController, App, Page } from '../../../../../ionic/index';
import { FORM_DIRECTIVES, FormBuilder, ControlGroup, Validators } from 'angular2/common';


Expand Down
2 changes: 1 addition & 1 deletion ionic/components/app/test/animations/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {App, Page, Animation, IonicApp} from 'ionic-angular';
import {App, Page, Animation, IonicApp} from '../../../../../ionic';


@Page({
Expand Down
2 changes: 1 addition & 1 deletion ionic/components/app/test/cordova/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {App, NavController, Page, IonicApp, Modal, ViewController} from 'ionic-angular';
import {App, NavController, Page, IonicApp, Modal, ViewController} from '../../../../../ionic';


@Page({
Expand Down
2 changes: 1 addition & 1 deletion ionic/components/app/test/gestures/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {App, Page} from 'ionic-angular';
import {App, Page} from '../../../../../ionic';


@Page({
Expand Down
2 changes: 1 addition & 1 deletion ionic/components/app/test/storage/index.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import {Component} from 'angular2/core';
import {Control, ControlGroup} from 'angular2/common';

import {App, Storage, LocalStorage, SqlStorage} from 'ionic-angular';
import {App, Storage, LocalStorage, SqlStorage} from '../../../../../ionic';

@App({
templateUrl: 'main.html'
Expand Down
2 changes: 1 addition & 1 deletion ionic/components/app/test/typography/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {App, IonicApp} from 'ionic-angular';
import {App, IonicApp} from '../../../../../ionic';


@App({
Expand Down
2 changes: 1 addition & 1 deletion ionic/components/badge/test/basic/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {App, IonicApp} from 'ionic-angular';
import {App, IonicApp} from '../../../../../ionic';


@App({
Expand Down
2 changes: 1 addition & 1 deletion ionic/components/button/test/basic/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {App, IonicApp} from 'ionic-angular';
import {App, IonicApp} from '../../../../../ionic';


@App({
Expand Down
2 changes: 1 addition & 1 deletion ionic/components/button/test/block/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {App} from 'ionic-angular';
import {App} from '../../../../../ionic';


@App({
Expand Down
2 changes: 1 addition & 1 deletion ionic/components/button/test/clear/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {App} from 'ionic-angular';
import {App} from '../../../../../ionic';


@App({
Expand Down
2 changes: 1 addition & 1 deletion ionic/components/button/test/dynamic/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {App, IonicApp} from 'ionic-angular';
import {App, IonicApp} from '../../../../../ionic';


@App({
Expand Down
2 changes: 1 addition & 1 deletion ionic/components/button/test/fab/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {App} from 'ionic-angular';
import {App} from '../../../../../ionic';


@App({
Expand Down
2 changes: 1 addition & 1 deletion ionic/components/button/test/full/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {App} from 'ionic-angular';
import {App} from '../../../../../ionic';


@App({
Expand Down
2 changes: 1 addition & 1 deletion ionic/components/button/test/icons/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {App} from 'ionic-angular';
import {App} from '../../../../../ionic';


@App({
Expand Down
2 changes: 1 addition & 1 deletion ionic/components/button/test/outline/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {App} from 'ionic-angular';
import {App} from '../../../../../ionic';


@App({
Expand Down
2 changes: 1 addition & 1 deletion ionic/components/button/test/raised/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {App, IonicApp} from 'ionic-angular';
import {App, IonicApp} from '../../../../../ionic';


@App({
Expand Down
2 changes: 1 addition & 1 deletion ionic/components/button/test/round/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {App} from 'ionic-angular';
import {App} from '../../../../../ionic';


@App({
Expand Down
2 changes: 1 addition & 1 deletion ionic/components/button/test/sizes/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {App} from 'ionic-angular';
import {App} from '../../../../../ionic';


@App({
Expand Down
2 changes: 1 addition & 1 deletion ionic/components/card/test/advanced/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {App} from 'ionic-angular';
import {App} from '../../../../../ionic';


@App({
Expand Down
2 changes: 1 addition & 1 deletion ionic/components/card/test/basic/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {App} from 'ionic-angular';
import {App} from '../../../../../ionic';


@App({
Expand Down
2 changes: 1 addition & 1 deletion ionic/components/card/test/images/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {App} from 'ionic-angular';
import {App} from '../../../../../ionic';


@App({
Expand Down
2 changes: 1 addition & 1 deletion ionic/components/card/test/list/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {App} from 'ionic-angular';
import {App} from '../../../../../ionic';


@App({
Expand Down
2 changes: 1 addition & 1 deletion ionic/components/card/test/map/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {App} from 'ionic-angular';
import {App} from '../../../../../ionic';


@App({
Expand Down
2 changes: 1 addition & 1 deletion ionic/components/card/test/social/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {App} from 'ionic-angular';
import {App} from '../../../../../ionic';


@App({
Expand Down
2 changes: 1 addition & 1 deletion ionic/components/checkbox/test/basic/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {App} from 'ionic-angular';
import {App} from '../../../../../ionic';
import {
Control,
ControlGroup,
Expand Down
2 changes: 1 addition & 1 deletion ionic/components/chip/test/basic/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {App, IonicApp} from 'ionic-angular';
import {App, IonicApp} from '../../../../../ionic';


@App({
Expand Down
2 changes: 1 addition & 1 deletion ionic/components/chip/test/delete/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {App, IonicApp} from 'ionic-angular';
import {App, IonicApp} from '../../../../../ionic';


@App({
Expand Down
2 changes: 1 addition & 1 deletion ionic/components/chip/test/icon/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {App, IonicApp} from 'ionic-angular';
import {App, IonicApp} from '../../../../../ionic';


@App({
Expand Down
2 changes: 1 addition & 1 deletion ionic/components/chip/test/image/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {App, IonicApp} from 'ionic-angular';
import {App, IonicApp} from '../../../../../ionic';


@App({
Expand Down
2 changes: 1 addition & 1 deletion ionic/components/grid/test/alignment/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {App} from 'ionic-angular';
import {App} from '../../../../../ionic';


@App({
Expand Down
2 changes: 1 addition & 1 deletion ionic/components/grid/test/basic/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {App} from 'ionic-angular';
import {App} from '../../../../../ionic';


@App({
Expand Down
2 changes: 1 addition & 1 deletion ionic/components/grid/test/full/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {App} from 'ionic-angular';
import {App} from '../../../../../ionic';


@App({
Expand Down
2 changes: 1 addition & 1 deletion ionic/components/icon/test/basic/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {App} from 'ionic-angular';
import {App} from '../../../../../ionic';


@App({
Expand Down
2 changes: 1 addition & 1 deletion ionic/components/infinite-scroll/test/basic/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import {ViewChild} from 'angular2/core';
import {App, Page, InfiniteScroll, NavController} from 'ionic-angular';
import {App, Page, InfiniteScroll, NavController} from '../../../../../ionic';


@Page({
Expand Down
2 changes: 1 addition & 1 deletion ionic/components/infinite-scroll/test/short-list/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {App, InfiniteScroll} from 'ionic-angular';
import {App, InfiniteScroll} from '../../../../../ionic';


@App({
Expand Down
2 changes: 1 addition & 1 deletion ionic/components/input/test/fixed-inline-labels/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {App, Page} from 'ionic-angular';
import {App, Page} from '../../../../../ionic';


@Page({
Expand Down
2 changes: 1 addition & 1 deletion ionic/components/input/test/floating-labels/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {App} from 'ionic-angular';
import {App} from '../../../../../ionic';


@App({
Expand Down
2 changes: 1 addition & 1 deletion ionic/components/input/test/form-inputs/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {App} from 'ionic-angular';
import {App} from '../../../../../ionic';
import {FormBuilder, Validators} from 'angular2/common';


Expand Down
2 changes: 1 addition & 1 deletion ionic/components/input/test/inline-labels/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {App} from 'ionic-angular';
import {App} from '../../../../../ionic';


@App({
Expand Down
2 changes: 1 addition & 1 deletion ionic/components/input/test/input-focus/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {App} from 'ionic-angular';
import {App} from '../../../../../ionic';


@App({
Expand Down
2 changes: 1 addition & 1 deletion ionic/components/input/test/inset-inputs/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {App} from 'ionic-angular';
import {App} from '../../../../../ionic';


@App({
Expand Down
2 changes: 1 addition & 1 deletion ionic/components/input/test/placeholder-labels/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {App} from 'ionic-angular';
import {App} from '../../../../../ionic';


@App({
Expand Down
2 changes: 1 addition & 1 deletion ionic/components/input/test/stacked-labels/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {App, Page} from 'ionic-angular';
import {App, Page} from '../../../../../ionic';


@App({
Expand Down
2 changes: 1 addition & 1 deletion ionic/components/item/test/buttons/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {App} from 'ionic-angular';
import {App} from '../../../../../ionic';


@App({
Expand Down
2 changes: 1 addition & 1 deletion ionic/components/item/test/dividers/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {App} from 'ionic-angular';
import {App} from '../../../../../ionic';


@App({
Expand Down
2 changes: 1 addition & 1 deletion ionic/components/item/test/groups/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {App, Page, NavController, NavParams} from 'ionic-angular';
import {App, Page, NavController, NavParams} from '../../../../../ionic';


@Page({
Expand Down
2 changes: 1 addition & 1 deletion ionic/components/item/test/icons/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {App} from 'ionic-angular';
import {App} from '../../../../../ionic';


@App({
Expand Down
2 changes: 1 addition & 1 deletion ionic/components/item/test/images/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {App} from 'ionic-angular';
import {App} from '../../../../../ionic';


@App({
Expand Down
2 changes: 1 addition & 1 deletion ionic/components/item/test/media/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {App} from 'ionic-angular';
import {App} from '../../../../../ionic';


@App({
Expand Down
2 changes: 1 addition & 1 deletion ionic/components/item/test/sliding/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {App, Page, IonicApp, Alert, NavController} from 'ionic-angular';
import {App, Page, IonicApp, Alert, NavController} from '../../../../../ionic';


@Page({
Expand Down
2 changes: 1 addition & 1 deletion ionic/components/item/test/text/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {App} from 'ionic-angular';
import {App} from '../../../../../ionic';


@App({
Expand Down
2 changes: 1 addition & 1 deletion ionic/components/list/test/headers/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {App} from 'ionic-angular';
import {App} from '../../../../../ionic';


@App({
Expand Down
2 changes: 1 addition & 1 deletion ionic/components/list/test/inset/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {App} from 'ionic-angular';
import {App} from '../../../../../ionic';


@App({
Expand Down
2 changes: 1 addition & 1 deletion ionic/components/list/test/no-lines/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {App} from 'ionic-angular';
import {App} from '../../../../../ionic';


@App({
Expand Down
2 changes: 1 addition & 1 deletion ionic/components/list/test/repeat-headers/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {App} from 'ionic-angular';
import {App} from '../../../../../ionic';


@App({
Expand Down
2 changes: 1 addition & 1 deletion ionic/components/list/test/sticky/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {App} from 'ionic-angular';
import {App} from '../../../../../ionic';


@App({
Expand Down
2 changes: 1 addition & 1 deletion ionic/components/loading/test/basic/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {App, Page, ActionSheet, Loading, NavController, ViewController, Platform} from 'ionic-angular';
import {App, Page, ActionSheet, Loading, NavController, ViewController, Platform} from '../../../../../ionic';


@Page({
Expand Down
2 changes: 1 addition & 1 deletion ionic/components/loading/test/tabs/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {App, Page, ActionSheet, Loading, NavController, ViewController, Platform} from 'ionic-angular';
import {App, Page, ActionSheet, Loading, NavController, ViewController, Platform} from '../../../../../ionic';


@Page({
Expand Down
2 changes: 1 addition & 1 deletion ionic/components/menu/test/basic/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {App, IonicApp, MenuController, Page, NavController, Alert} from 'ionic-angular';
import {App, IonicApp, MenuController, Page, NavController, Alert} from '../../../../../ionic';


@Page({
Expand Down
2 changes: 1 addition & 1 deletion ionic/components/menu/test/disable-swipe/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {App, Page, NavController, MenuController} from 'ionic-angular';
import {App, Page, NavController, MenuController} from '../../../../../ionic';

@Page({
templateUrl: 'page1.html'
Expand Down
2 changes: 1 addition & 1 deletion ionic/components/menu/test/enable-disable/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {App, Page, IonicApp, MenuController} from 'ionic-angular';
import {App, Page, IonicApp, MenuController} from '../../../../../ionic';


@Page({
Expand Down
2 changes: 1 addition & 1 deletion ionic/components/menu/test/multiple/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {App, Page, MenuController} from 'ionic-angular';
import {App, Page, MenuController} from '../../../../../ionic';


@Page({
Expand Down
2 changes: 1 addition & 1 deletion ionic/components/menu/test/overlay/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {App, IonicApp, Page} from 'ionic-angular';
import {App, IonicApp, Page} from '../../../../../ionic';


@Page({templateUrl: 'page1.html'})
Expand Down
2 changes: 1 addition & 1 deletion ionic/components/menu/test/push/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {App, IonicApp, Page} from 'ionic-angular';
import {App, IonicApp, Page} from '../../../../../ionic';


@Page({templateUrl: 'page1.html'})
Expand Down
Loading

0 comments on commit 45e37ce

Please sign in to comment.