Files
Kmake/test/fixtures/wpt/wasm/webapi/esm-integration/js-wasm-cycle.tentative.html
2026-05-26 23:36:42 -07:00

12 lines
344 B
HTML

<!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>