PR-URL: https://github.com/nodejs/node/pull/48787 Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
5 lines
113 B
JavaScript
5 lines
113 B
JavaScript
import test from 'node:test';
|
|
|
|
test('this should fail', () => {
|
|
throw new Error('this is a failing test');
|
|
});
|