summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/wasm/webapi/esm-integration/js-wasm-cycle.tentative.html
blob: 38b0d3203c27d82fa6a0008d2ebdac31af3ac935 (plain)
1
2
3
4
5
6
7
8
9
10
11
<!doctype html>
<title>Check bindings in JavaScript and WebAssembly cycle (JS higher)</title>

<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script type=module>
setup({ single_test: true });
import { f } from "./resources/js-wasm-cycle.js";
assert_equals(f(), 24);
done();
</script>