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 0bd9704 commit bcf97abCopy full SHA for bcf97ab
test/parallel/test-runner-exit-code.js
@@ -20,7 +20,7 @@ async function runAndKill(file) {
20
});
21
const [code, signal] = await once(child, 'exit');
22
await finished(child.stdout);
23
- assert.strictEqual(stdout, 'TAP version 13\n');
+ assert(stdout.startsWith('TAP version 13\n'));
24
assert.strictEqual(signal, null);
25
assert.strictEqual(code, 1);
26
}
0 commit comments