mirror of
https://github.com/oven-sh/bun
synced 2026-02-16 13:51:47 +00:00
9 lines
239 B
TypeScript
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();
|
|
});
|