Files
Kmake/test/fixtures/test-runner/output/async-test-scheduling.mjs
2026-05-26 23:36:42 -07:00

14 lines
407 B
JavaScript

import * as common from '../../../common/index.mjs';
import { describe, test } from 'node:test';
import { setTimeout } from 'node:timers/promises';
test('test', common.mustCall());
describe('suite', common.mustCall(async () => {
test('test', common.mustCall());
await setTimeout(10);
test('scheduled async', common.mustCall());
}));
await setTimeout(10);
test('scheduled async', common.mustCall());