test(segment): add ion-nav

This commit is contained in:
Brandy Carney
2016-06-17 22:09:06 -04:00
parent 1b882800f7
commit 8be0a9ffb3

View File

@ -7,7 +7,7 @@ import {ionicBootstrap} from '../../../../../src';
templateUrl: 'main.html',
providers: [FormBuilder]
})
class E2EApp {
class E2EPage {
relationship: string = 'enemies';
modelStyle: string = 'B';
appType: string = 'free';
@ -39,4 +39,11 @@ class E2EApp {
}
}
@Component({
template: '<ion-nav [root]="root"></ion-nav>'
})
class E2EApp {
root = E2EPage;
}
ionicBootstrap(E2EApp);