forked from LeenkxTeam/Kmake
8 lines
156 B
TypeScript
8 lines
156 B
TypeScript
// Flags: --enable-source-maps
|
|
import { test } from 'node:test';
|
|
import { strictEqual } from 'node:assert';
|
|
|
|
test('fails', () => {
|
|
strictEqual(1, 2);
|
|
});
|