Files
2026-08-27 21:09:14 +00:00

8 lines
264 B
TypeScript

import { expect, test } from "bun:test";
import { bunRun } from "harness";
import { join } from "node:path";
test.concurrent("https://github.com/oven-sh/bun/issues/11866", async () => {
expect(await bunRun(join(import.meta.dirname, "11866.ts"))).toSpawn();
});