mirror of
https://github.com/oven-sh/bun
synced 2026-02-10 02:48:50 +00:00
6 lines
234 B
TypeScript
6 lines
234 B
TypeScript
import { $ } from "bun";
|
|
test("destructure string does not become string", async () => {
|
|
const result = await $`bun build --target=node f2.ts | bun -`.cwd(import.meta.dir).text();
|
|
expect(result).toBe("[Function: replace]\n");
|
|
});
|