Files

8 lines
166 B
JavaScript
Raw Permalink Normal View History

2026-05-26 23:36:42 -07:00
import test from 'node:test';
test('matching assertions', (t) => {
t.plan(2);
t.assert.ok(true, 'first assertion');
t.assert.ok(true, 'second assertion');
});