aboutsummaryrefslogtreecommitdiff
path: root/test/bun.js/esbuild-child_process.test.ts
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--test/bun.js/esbuild-child_process.test.ts14
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))});`;