node/test/fixtures/test-runner/coverage
..
a.test.mjs
a.test.mjs.map
a.test.ts
b.test.ts
bar.mts
foo.mts
index.test.js
README.md
stdin.test.js
stdin.test.js.map

The files in the directory are generated by the following commands:

npx esbuild a.test.ts --sourcemap --outdir=. --out-extension:.js=.mjs --sources-content=false --minify --bundle --platform=node --format=esm
echo "import { test } from 'node:test';
test('ok', () => {});

function uncovered() {
  return 'uncovered';
}
" | npx esbuild --sourcemap --sourcefile=stdin.test.ts --sources-content=true --bundle --platform=node --outfile="stdin.test.js"