Skip to content

Commit

Permalink
test(segment): add ion-nav
Browse files Browse the repository at this point in the history
  • Loading branch information
brandyscarney committed Jun 18, 2016
1 parent 1b88280 commit 8be0a9f
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/components/segment/test/basic/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down Expand Up @@ -39,4 +39,11 @@ class E2EApp {
}
}

@Component({
template: '<ion-nav [root]="root"></ion-nav>'
})
class E2EApp {
root = E2EPage;
}

ionicBootstrap(E2EApp);

0 comments on commit 8be0a9f

Please sign in to comment.