PR-URL: https://github.com/nodejs/node/pull/57016 Refs: https://github.com/nodejs/node/issues/53787 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Tierney Cyren <hello@bnb.im> Reviewed-By: Michael Dawson <midawson@redhat.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Paolo Insogna <paolo@cowtech.it>
6 lines
123 B
JavaScript
6 lines
123 B
JavaScript
const { test } = require('node:test');
|
|
const { ok } = require('node:assert');
|
|
|
|
test('should pass', () => {
|
|
ok(true);
|
|
});
|