Files
Brandy Carney 45e37ceb29 test(e2e): update all e2e tests to use a local path to ionic
this lets type errors to show up during development

closes #6366
2016-04-29 15:34:56 -04:00

27 lines
352 B
TypeScript

import {App, Page} from '../../../../../ionic';
@Page({
template: `
<ion-content padding text-center>
Page be loaded!
</ion-content>
`
})
class AsyncPage {}
@App({
template: `<ion-nav [root]="root"></ion-nav>`
})
class E2EApp {
root;
constructor() {
setTimeout(() => {
this.root = AsyncPage;
}, 1000);
}
}