We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
--test
for example, running node --loader ts-node/esm --test a.test.ts will fail:
node --loader ts-node/esm --test a.test.ts
/// a.test.ts import { test } from 'node:test' test(async () => { const a: any = {}; });
the challenge is that each test file spawns a new process
Activity