forked from LeenkxTeam/Kmake
14 lines
407 B
JavaScript
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());
|