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 4bd24ec commit 38630e5Copy full SHA for 38630e5
test/tools/runner/hooks/configuration.ts
@@ -236,8 +236,8 @@ function checkFlakyTestList(this: Context) {
236
237
const flakyTestDoesNotExist = flakyTests.find(testName => !allTests.includes(testName));
238
if (flakyTestDoesNotExist != null) {
239
- console.error('Flaky test:', flakyTestDoesNotExist, 'is not run at all');
240
- process.exitCode = 1;
+ console.error('Flaky test:', JSON.stringify(flakyTestDoesNotExist), 'is not run at all');
+ process.exit(1);
241
}
242
243
0 commit comments