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 ae40aca commit 4824fbfCopy full SHA for 4824fbf
test/parallel/test-runner-bail.js
@@ -144,7 +144,6 @@ describe('node:test bail', () => {
144
assert.strictEqual(child.stderr.toString(), '');
145
const output = child.stdout.toString();
146
147
- // Extract hooks order from the output
148
const hooksOrderMatch = output.match(/HOOKS_ORDER: (.*)/);
149
assert(hooksOrderMatch, 'Hooks order output should be present');
150
const hooksOrder = hooksOrderMatch[1].split(',');
@@ -157,7 +156,6 @@ describe('node:test bail', () => {
157
156
'after',
158
]);
159
160
- // Keep existing assertions
161
assert.match(output, /Bail out!/);
162
assert.match(output, /tests 2/);
163
assert.match(output, /suites 1/);
0 commit comments