mirror of https://github.com/nodejs/node.git
9 lines
149 B
TypeScript
9 lines
149 B
TypeScript
|
import { strictEqual } from 'node:assert';
|
||
|
|
||
|
export function covered() {
|
||
|
strictEqual(1, 2);
|
||
|
}
|
||
|
|
||
|
export function uncovered() {
|
||
|
return 'uncovered';
|
||
|
}
|