Skip to content

Commit e96afb8

Browse files
filipesilvavikerman
authored andcommitted
test: ignore platform-server tests for ivy
1 parent a9ebfc8 commit e96afb8

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

tests/legacy-cli/e2e_runner.ts

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff 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

149155
const shardId = ('shard' in argv) ? argv['shard'] : null;

0 commit comments

Comments
 (0)