Skip to content

Commit

Permalink
test: remove comments
Browse files Browse the repository at this point in the history
  • Loading branch information
pmarchini committed Jan 12, 2025
1 parent 4d85df5 commit 39a21ba
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions test/parallel/test-runner-bail.js
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,6 @@ describe('node:test bail', () => {
assert.strictEqual(child.stderr.toString(), '');
const output = child.stdout.toString();

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

// Keep existing assertions
assert.match(output, /Bail out!/);
assert.match(output, /tests 2/);
assert.match(output, /suites 1/);
Expand Down

0 comments on commit 39a21ba

Please sign in to comment.