Skip to content

Commit

Permalink
formatter.
Browse files Browse the repository at this point in the history
  • Loading branch information
DellaBitta committed Dec 15, 2023
1 parent c0a34ac commit 8cfec21
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion scripts/ci-test/test_changed.ts
Expand Up @@ -82,7 +82,7 @@ async function runTests(config: TestConfig) {
console.error(chalk`{red ${e}}`);

const chrome_notes = process.env.CHROME_VERSION_NOTES;
if(chrome_notes) {
if (chrome_notes) {
console.error();
console.error(chalk`{red ${chrome_notes}}`);
console.error();
Expand Down
8 changes: 4 additions & 4 deletions scripts/run_tests_in_ci.js
Expand Up @@ -88,10 +88,10 @@ const argv = yargs.options({
console.log(stdout);
console.error(stderr);

if(process.env.CHROME_VERSION_NOTES) {
console.error()
console.error(process.env.CHROME_VERSION_NOTES)
console.error()
if (process.env.CHROME_VERSION_NOTES) {
console.error();
console.error(process.env.CHROME_VERSION_NOTES);
console.error();
}

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

0 comments on commit 8cfec21

Please sign in to comment.