Files
bun.sh/test/regression/issue/011297.test.ts
2024-05-24 14:44:14 -07:00

9 lines
239 B
TypeScript

import { test, expect } from "bun:test";
import { bunExe, isWindows } from "harness";
import { join } from "path";
import "harness";
test("issue #11297", async () => {
expect([join(import.meta.dir, "./011297.fixture.ts")]).toRun();
});