aboutsummaryrefslogtreecommitdiff
path: root/test/bun.js/wasi.test.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/bun.js/wasi.test.js')
-rw-r--r--test/bun.js/wasi.test.js15
1 files changed, 0 insertions, 15 deletions
diff --git a/test/bun.js/wasi.test.js b/test/bun.js/wasi.test.js
deleted file mode 100644
index f6d8e76f5..000000000
--- a/test/bun.js/wasi.test.js
+++ /dev/null
@@ -1,15 +0,0 @@
-import { spawnSync } from "bun";
-import { expect, it } from "bun:test";
-import { bunEnv } from "bunEnv";
-import { bunExe } from "bunExe";
-
-it("Should support printing 'hello world'", () => {
- const { stdout, exitCode } = spawnSync({
- cmd: [bunExe(), import.meta.dir + "/hello-wasi.wasm"],
- stdout: "pipe",
- env: bunEnv,
- });
-
- expect(stdout.toString()).toEqual("hello world\n");
- expect(exitCode).toBe(0);
-});