File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed
Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -143,7 +143,13 @@ if (argv.ivy) {
143143 . filter ( name => ! name . includes ( 'tests/i18n/' ) )
144144 . filter ( name => ! name . endsWith ( 'tests/build/aot/aot-i18n.ts' ) )
145145 // We don't have a library consumption story yet for Ivy.
146- . filter ( name => ! name . endsWith ( 'tests/generate/library/library-consumption.ts' ) ) ;
146+ . filter ( name => ! name . endsWith ( 'tests/generate/library/library-consumption.ts' ) )
147+ // We don't have a platform-server usage story yet for Ivy.
148+ // It's contingent on lazy loading and factory shim considerations that are still being
149+ // discussed.
150+ . filter ( name => ! name . endsWith ( 'tests/build/platform-server.ts' ) )
151+ . filter ( name => ! name . endsWith ( 'tests/build/build-app-shell.ts' ) )
152+ . filter ( name => ! name . endsWith ( 'tests/build/build-app-shell-with-schematic.ts' ) ) ;
147153}
148154
149155const shardId = ( 'shard' in argv ) ? argv [ 'shard' ] : null ;
You can’t perform that action at this time.
0 commit comments