Skip to content

Commit 4535de4

Browse files
fix: missing )
1 parent 2622f8d commit 4535de4

File tree

1 file changed

+2
-1
lines changed
  • test/fixtures/test-runner/bail

1 file changed

+2
-1
lines changed

test/fixtures/test-runner/bail/bail.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
'use strict';
2+
const common = require('../../../common');
23
const test = require('node:test');
34

45
test('nested', (t) => {
56
t.test('first', () => {});
67
t.test('second', () => {
78
throw new Error();
89
});
9-
t.test('third', common.mustNotCall(() => {});
10+
t.test('third', common.mustNotCall(() => {}));
1011
});
1112

1213
test('top level', (t) => {

0 commit comments

Comments
 (0)