diff options
author | 2022-11-15 00:13:09 -0800 | |
---|---|---|
committer | 2022-11-15 00:13:09 -0800 | |
commit | c7e3b4aaa6d0ffdcaca3cadd79fe9ef3d96d3ef6 (patch) | |
tree | 95c18a00a89ac0df66bccd9e0559d9eb7205fb08 /test/bun.js/esbuild-child_process.test.ts | |
parent | 44babb9ce5a4e26fc43b002dedbf194c31331a0e (diff) | |
download | bun-jarred/dump.tar.gz bun-jarred/dump.tar.zst bun-jarred/dump.zip |
wipjarred/dump
Diffstat (limited to '')
-rw-r--r-- | test/bun.js/esbuild-child_process.test.ts | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/test/bun.js/esbuild-child_process.test.ts b/test/bun.js/esbuild-child_process.test.ts index a7eb4f079..37713def2 100644 --- a/test/bun.js/esbuild-child_process.test.ts +++ b/test/bun.js/esbuild-child_process.test.ts @@ -2,13 +2,13 @@ import { transform, transformSync } from "esbuild"; import { describe, it, expect } from "bun:test"; describe("child_process.spawn - esbuild", () => { - it("should transform successfully", async () => { - const result = await transform("console.log('hello world')", { - loader: "js", - target: "node12", - }); - expect(result.code).toBe('console.log("hello world");\n'); - }); + // it("should transform successfully", async () => { + // const result = await transform("console.log('hello world')", { + // loader: "js", + // target: "node12", + // }); + // expect(result.code).toBe('console.log("hello world");\n'); + // }); it("works for input exceeding the pipe capacity", async () => { const hugeString = `console.log(${JSON.stringify("a".repeat(1000000))});`; |