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 2622f8d commit 4535de4Copy full SHA for 4535de4
test/fixtures/test-runner/bail/bail.js
@@ -1,12 +1,13 @@
1
'use strict';
2
+const common = require('../../../common');
3
const test = require('node:test');
4
5
test('nested', (t) => {
6
t.test('first', () => {});
7
t.test('second', () => {
8
throw new Error();
9
});
- t.test('third', common.mustNotCall(() => {});
10
+ t.test('third', common.mustNotCall(() => {}));
11
12
13
test('top level', (t) => {
0 commit comments