PR-URL: https://github.com/nodejs/node/pull/57304 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
17 lines
345 B
JavaScript
17 lines
345 B
JavaScript
import test from 'node:test';
|
|
|
|
test('should pass when assertions are eventually met', async (t) => {
|
|
t.plan(1, { wait: true });
|
|
|
|
setTimeout(() => {
|
|
t.assert.ok(true);
|
|
}, 250);
|
|
});
|
|
|
|
test('should fail when assertions fail', async (t) => {
|
|
t.plan(1, { wait: true });
|
|
|
|
setTimeout(() => {
|
|
t.assert.ok(false);
|
|
}, 250).unref();
|
|
});
|