test(e2e): refactor e2e to use deeplink decorator, lazy load more pages

This commit is contained in:
Dan Bucholtz
2017-03-11 00:15:38 -06:00
committed by GitHub
parent 3118bbbd1b
commit 0964c850d4
290 changed files with 2083 additions and 1865 deletions

View File

@ -0,0 +1,13 @@
import { NgModule } from '@angular/core';
import { DeepLinkModule } from '../../../../../..';
import { PageTwo } from './page-two';
@NgModule({
imports: [
DeepLinkModule.forChild(PageTwo)
],
declarations: [
PageTwo
],
})
export class PageTwoModule { }