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
209 B
JavaScript
9 lines
209 B
JavaScript
import test from 'node:test';
|
|
|
|
test('failing planning by options', { plan: 1 }, () => {
|
|
// Should fail - no assertions
|
|
});
|
|
|
|
test('passing planning by options', { plan: 1 }, (t) => {
|
|
t.assert.ok(true);
|
|
});
|