mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-22 21:48:42 +08:00
test(e2e): refactor e2e to use deeplink decorator, lazy load more pages
This commit is contained in:
@ -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 { }
|
Reference in New Issue
Block a user