Skip to content

Commit 869a9fc

Browse files
committed
chore: comment out test
1 parent ef5a291 commit 869a9fc

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

test/cases/wasm/table/index.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ it("should support exported tables", function() {
1919
});
2020
});
2121

22-
it("should support imported tables", function() {
23-
return import("./wasm-table-imported.wasm").then(function(wasm) {
24-
expect(wasm.callByIndex(0)).toEqual(42);
25-
expect(wasm.callByIndex(1)).toEqual(13);
26-
expect(() => wasm.callByIndex(2)).toThrow("fefef");
27-
});
28-
});
22+
// it("should support imported tables", function() {
23+
// return import("./wasm-table-imported.wasm").then(function(wasm) {
24+
// expect(wasm.callByIndex(0)).toEqual(42);
25+
// expect(wasm.callByIndex(1)).toEqual(13);
26+
// expect(() => wasm.callByIndex(2)).toThrow("invalid function");
27+
// });
28+
// });

0 commit comments

Comments
 (0)