Files

13 lines
187 B
TypeScript
Raw Permalink Normal View History

2026-05-26 23:36:42 -07:00
import { test } from 'node:test';
import { covered } from './b.test';
test('fails', () => {
covered();
});
function uncovered() {
return 'uncovered';
}
if (false) {
uncovered();
}