Skip to content

Commit 439a5ee

Browse files
committed
test_runner: remove temporary no-op for bailed tests
1 parent 24eb106 commit 439a5ee

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

lib/internal/test_runner/runner.js

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -385,10 +385,6 @@ function runTestFile(path, filesWatcher, opts) {
385385
const testPath = path === kIsolatedProcessName ? '' : path;
386386
const testOpts = { __proto__: null, signal: opts.signal };
387387
const subtest = opts.root.createSubtest(FileTest, testPath, testOpts, async (t) => {
388-
if (opts.root.bailed) {
389-
// TODO(pmarchini): this is a temporary solution to avoid running tests after bailing
390-
return; // No-op in order to avoid running tests after bailing
391-
}
392388
const args = getRunArgs(path, opts);
393389
const stdio = ['pipe', 'pipe', 'pipe'];
394390
const env = { __proto__: null, ...process.env, NODE_TEST_CONTEXT: 'child-v8' };

0 commit comments

Comments
 (0)