test(tabs): update final tabs test

This commit is contained in:
jgw96
2017-03-06 11:18:55 -06:00
parent 1105bcda86
commit f2894be061
4 changed files with 9 additions and 8 deletions

View File

@@ -1,11 +1,8 @@
import { Component, ViewEncapsulation, NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { IonicApp, IonicModule } from '../../../..';
@Component({template: 'hi'})
export class E2EPage {}
import { IonicApp, IonicModule } from '../../../../..';
import { RootPage } from '../pages/root-page/root-page';
@Component({
templateUrl: 'main.html',
@@ -30,13 +27,13 @@ export class E2EPage {}
]
})
export class E2EApp {
root = E2EPage;
root = RootPage;
}
@NgModule({
declarations: [
E2EApp,
E2EPage
RootPage
],
imports: [
BrowserModule,
@@ -45,7 +42,7 @@ export class E2EApp {
bootstrap: [IonicApp],
entryComponents: [
E2EApp,
E2EPage
RootPage
]
})
export class AppModule {}

View File

@@ -0,0 +1,4 @@
import { Component } from '@angular/core';
@Component({ template: 'hi' })
export class RootPage { }