1<!doctype html> 2<title>Check import and export between WebAssembly modules</title> 3 4<script src="/resources/testharness.js"></script> 5<script src="/resources/testharnessreport.js"></script> 6<script type=module> 7setup({ single_test: true }); 8window.log = []; 9import { logExec } from "./resources/wasm-import-from-wasm.wasm"; 10logExec(); 11assert_equals(log.length, 1); 12assert_equals(log[0], "executed"); 13done(); 14</script> 15