22 lines
590 B
HTML
22 lines
590 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>CNC WASM Browser Smoke</title>
|
|
</head>
|
|
<body>
|
|
<pre id="result">pending</pre>
|
|
<!-- smoke marker: browser wasm smoke passed -->
|
|
<script src="/public/cnc_sim.js"></script>
|
|
<script type="module">
|
|
import { createWasmSimulator } from "/src/wasm-core.js";
|
|
import { runBrowserWasmSmoke } from "/test-browser-wasm-smoke-sections.js";
|
|
|
|
runBrowserWasmSmoke({
|
|
createWasmSimulator,
|
|
result: document.querySelector("#result"),
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|