Files
Kmake/test/fixtures/test-runner/global-setup-teardown/imported-module-with-test.mjs

5 lines
139 B
JavaScript
Raw Normal View History

2026-05-26 23:36:42 -07:00
import { test } from 'node:test';
test('Imported module Ok', () => {});
test('Imported module Fail', () => { throw new Error('fail'); });