forked from LeenkxTeam/Kmake
8 lines
166 B
JavaScript
8 lines
166 B
JavaScript
|
|
import test from 'node:test';
|
||
|
|
|
||
|
|
test('matching assertions', (t) => {
|
||
|
|
t.plan(2);
|
||
|
|
t.assert.ok(true, 'first assertion');
|
||
|
|
t.assert.ok(true, 'second assertion');
|
||
|
|
});
|