Skip to content

Commit 0dd5bdb

Browse files
committed
build: run saucelabs and browserstack tests with ivy
We recently regressed when we switched to the auto-generated SystemJS configuration in terms of how those legacy karma tests run. Previously they ran with Ivy, but currently they run with view engine. We should switch them back to Ivy since Ivy is the default in version 9.
1 parent c07ec04 commit 0dd5bdb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/gulp/tasks/unit-test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ task(':test:build-system-config', () => {
4545
const configOutputPath = join(buildConfig.outputDir, 'karma-system-config.js');
4646
shelljs.cd(buildConfig.projectDir);
4747
const bazelGenfilesDir = shelljs.exec('yarn -s bazel info bazel-genfiles').stdout.trim();
48-
shelljs.exec('yarn -s bazel build //test:system-config.js --config=view-engine');
48+
shelljs.exec('yarn -s bazel build //test:system-config.js');
4949
shelljs.cp(join(bazelGenfilesDir, 'test/system-config.js'), configOutputPath);
5050
shelljs.chmod('u+w', configOutputPath);
5151
});

0 commit comments

Comments
 (0)