PR-URL: https://github.com/nodejs/node/pull/57304 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
7 lines
167 B
JavaScript
7 lines
167 B
JavaScript
import test from 'node:test';
|
|
|
|
test('less assertions than planned', (t) => {
|
|
t.plan(2);
|
|
t.assert.ok(true, 'only one assertion');
|
|
// Missing second assertion
|
|
});
|