Files
Kmake/test/fixtures/test-runner/plan/subtest.mjs

10 lines
184 B
JavaScript
Raw Permalink Normal View History

2026-05-26 23:36:42 -07:00
import test from 'node:test';
test('parent test', async (t) => {
t.plan(1);
await t.test('child test', (t) => {
t.plan(1);
t.assert.ok(true, 'child assertion');
});
});