Skip to content

Commit

Permalink
fix: missing )
Browse files Browse the repository at this point in the history
  • Loading branch information
marco-ippolito committed Aug 21, 2023
1 parent 2622f8d commit 4535de4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/fixtures/test-runner/bail/bail.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
'use strict';
const common = require('../../../common');
const test = require('node:test');

test('nested', (t) => {
t.test('first', () => {});
t.test('second', () => {
throw new Error();
});
t.test('third', common.mustNotCall(() => {});
t.test('third', common.mustNotCall(() => {}));
});

test('top level', (t) => {
Expand Down

0 comments on commit 4535de4

Please sign in to comment.