Files
Kmake/test/fixtures/test-runner/reporters.js
2026-05-26 23:36:42 -07:00

12 lines
224 B
JavaScript

'use strict';
const test = require('node:test');
test('nested', { concurrency: 4 }, async (t) => {
t.test('ok', () => {});
t.test('failing', () => {
throw new Error('error');
});
});
test('top level', () => {});