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
166 B
JavaScript
7 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');
|
|
});
|