test(e2e): menu/basic

This commit is contained in:
Daniel Imhoff
2017-03-03 14:47:36 -06:00
parent 552a88c73b
commit a43386a405
18 changed files with 225 additions and 146 deletions

View File

@ -0,0 +1,17 @@
import { NgModule } from '@angular/core';
import { DeepLinkModule } from '../../../../../..';
import { E2EPage } from './main';
@NgModule({
declarations: [
E2EPage,
],
imports: [
DeepLinkModule.forChild(E2EPage)
],
entryComponents: [
E2EPage,
]
})
export class E2EPageModule {}