mirror of
https://github.com/oven-sh/bun
synced 2026-02-10 02:48:50 +00:00
8 lines
193 B
TypeScript
8 lines
193 B
TypeScript
import { expect, test } from "bun:test";
|
|
import "harness";
|
|
import { join } from "path";
|
|
|
|
test("issue #11297", async () => {
|
|
expect([join(import.meta.dir, "./11297.fixture.ts")]).toRun();
|
|
});
|