mirror of
https://github.com/oven-sh/bun
synced 2026-02-09 18:38:55 +00:00
21 lines
447 B
JavaScript
21 lines
447 B
JavaScript
import { it } from "bun:test";
|
|
// import * as wasm from "./wasm-return-1-test.wasm";
|
|
|
|
// import { readFileSync } from "fs";
|
|
|
|
// it("wasm readFileSync", async () => {
|
|
// console.log("here");
|
|
// console.log(wasm.hello());
|
|
// });
|
|
|
|
// it("wasm import", async () => {
|
|
// console.log("heyt");
|
|
// try {
|
|
// console.log("hi");
|
|
// expect(wasm.hello()).toBe(1);
|
|
// } catch (err) {
|
|
// console.error(err);
|
|
// throw err;
|
|
// }
|
|
// });
|