Skip to content

Commit 0b37a1a

Browse files
committed
chore: print-only
1 parent 38630e5 commit 0b37a1a

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

test/tools/runner/hooks/configuration.ts

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -236,8 +236,13 @@ function checkFlakyTestList(this: Context) {
236236

237237
const flakyTestDoesNotExist = flakyTests.find(testName => !allTests.includes(testName));
238238
if (flakyTestDoesNotExist != null) {
239-
console.error('Flaky test:', JSON.stringify(flakyTestDoesNotExist), 'is not run at all');
240-
process.exit(1);
239+
console.error(
240+
'\n' + '='.repeat(100) + '\n',
241+
'Flaky test:',
242+
JSON.stringify(flakyTestDoesNotExist),
243+
'is not run at all',
244+
'\n' + '='.repeat(100) + '\n'
245+
);
241246
}
242247
}
243248

0 commit comments

Comments
 (0)