• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1'use strict';
2const test = require('node:test');
3
4test('nested', { concurrency: 4 }, async (t) => {
5  t.test('ok', () => {});
6  t.test('failing', () => {
7    throw new Error('error');
8  });
9});
10
11test('top level', () => {});
12