1import * as common from '../../../common/index.mjs'; 2import { describe, test } from 'node:test'; 3import { setTimeout } from 'node:timers/promises'; 4 5test('test', common.mustCall()); 6describe('suite', common.mustCall(async () => { 7 test('test', common.mustCall()); 8 await setTimeout(10); 9 test('scheduled async', common.mustCall()); 10})); 11 12await setTimeout(10); 13test('scheduled async', common.mustCall()); 14