We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef5a291 commit 869a9fcCopy full SHA for 869a9fc
test/cases/wasm/table/index.js
@@ -19,10 +19,10 @@ it("should support exported tables", function() {
19
});
20
21
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
-});
+// it("should support imported tables", function() {
+// return import("./wasm-table-imported.wasm").then(function(wasm) {
+// expect(wasm.callByIndex(0)).toEqual(42);
+// expect(wasm.callByIndex(1)).toEqual(13);
+// expect(() => wasm.callByIndex(2)).toThrow("invalid function");
+// });
0 commit comments