forked from LeenkxTeam/Kmake
8 lines
203 B
JavaScript
8 lines
203 B
JavaScript
import test from 'node:test';
|
|
|
|
test('more assertions than planned', (t) => {
|
|
t.plan(1);
|
|
t.assert.ok(true, 'first assertion');
|
|
t.assert.ok(true, 'extra assertion'); // This should cause failure
|
|
});
|