Skip to content

Commit 4824fbf

Browse files
committed
test: remove comments
1 parent ae40aca commit 4824fbf

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

test/parallel/test-runner-bail.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,6 @@ describe('node:test bail', () => {
144144
assert.strictEqual(child.stderr.toString(), '');
145145
const output = child.stdout.toString();
146146

147-
// Extract hooks order from the output
148147
const hooksOrderMatch = output.match(/HOOKS_ORDER: (.*)/);
149148
assert(hooksOrderMatch, 'Hooks order output should be present');
150149
const hooksOrder = hooksOrderMatch[1].split(',');
@@ -157,7 +156,6 @@ describe('node:test bail', () => {
157156
'after',
158157
]);
159158

160-
// Keep existing assertions
161159
assert.match(output, /Bail out!/);
162160
assert.match(output, /tests 2/);
163161
assert.match(output, /suites 1/);

0 commit comments

Comments
 (0)