node/test/fixtures/test-runner/default-behavior/random.test.mjs
Raz Luvaton bcaf198900
test: reorder test files fixtures for better understanding
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>
2023-07-26 17:16:31 +00:00

5 lines
113 B
JavaScript

import test from 'node:test';
test('this should fail', () => {
throw new Error('this is a failing test');
});