We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 38630e5 commit 0b37a1aCopy full SHA for 0b37a1a
test/tools/runner/hooks/configuration.ts
@@ -236,8 +236,13 @@ function checkFlakyTestList(this: Context) {
236
237
const flakyTestDoesNotExist = flakyTests.find(testName => !allTests.includes(testName));
238
if (flakyTestDoesNotExist != null) {
239
- console.error('Flaky test:', JSON.stringify(flakyTestDoesNotExist), 'is not run at all');
240
- process.exit(1);
+ console.error(
+ '\n' + '='.repeat(100) + '\n',
241
+ 'Flaky test:',
242
+ JSON.stringify(flakyTestDoesNotExist),
243
+ 'is not run at all',
244
+ '\n' + '='.repeat(100) + '\n'
245
+ );
246
}
247
248
0 commit comments