File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
tests/legacy-cli/e2e/tests/build Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -122,7 +122,11 @@ export default async function () {
122
122
buildTarget [ 'options' ] [ 'experimentalImportFactories' ] = true ;
123
123
} ) ;
124
124
// Both Ivy and View Engine should support it.
125
- await replaceLoadChildren ( `() => import('./lazy/lazy.module').then(m => m.LazyModule)` ) ;
125
+ // DO_NOT_SUBMIT
126
+ // `as any` is a workaround while waiting for https://github.com/angular/angular/pull/29392
127
+ // when that's merged remove the next line, and uncomment the one after it
128
+ await replaceLoadChildren ( `() => import('./lazy/lazy.module').then(m => m.LazyModule) as any` ) ;
129
+ // await replaceLoadChildren(`() => import('./lazy/lazy.module').then(m => m.LazyModule)`);
126
130
await ng ( 'e2e' ) ;
127
131
await ng ( 'e2e' , '--prod' ) ;
128
132
}
You can’t perform that action at this time.
0 commit comments