Files
Kmake/test/fixtures/test-runner/default-behavior/random.test.mjs
2026-05-26 23:36:42 -07:00

6 lines
113 B
JavaScript

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