PR-URL: https://github.com/nodejs/node/pull/57304 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
9 lines
184 B
JavaScript
9 lines
184 B
JavaScript
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');
|
|
});
|
|
});
|