Skip to content

Commit c74725d

Browse files
committed
one more run_tests_in_cjs.js
1 parent 10b530b commit c74725d

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

scripts/ci-test/test_changed.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,9 +85,7 @@ async function runTests(config: TestConfig) {
8585
if(chrome_notes) {
8686
console.error();
8787
console.error(chalk`{red ${chrome_notes}}`);
88-
console.error(" yo ");
89-
} else {
90-
console.error("No chrome notes!")
88+
console.error();
9189
}
9290

9391
process.exit(1);

scripts/run_tests_in_ci.js

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -88,11 +88,12 @@ const argv = yargs.options({
8888
console.log(stdout);
8989
console.error(stderr);
9090

91-
const chrome_notes = process.env.CHROME_VERSION_NOTES;
92-
if(chrome_notes) {
93-
console.error()
94-
console.error(chrome_notes)
91+
if(process.env.CHROME_VERSION_NOTES) {
9592
console.error()
93+
console.error(process.env.CHROME_VERSION_NOTES)
94+
console.error(" yo yo ho ho ")
95+
} else {
96+
9697
}
9798

9899
writeLogs('Failure', name, stdout + '\n' + stderr);

0 commit comments

Comments
 (0)