Files
Kmake/test/fixtures/wpt/wasm/webapi/status.any.js
2026-05-26 23:36:42 -07:00

22 lines
433 B
JavaScript

// META: global=window,worker
const statuses = [
0,
300,
400,
404,
500,
600,
700,
999,
];
for (const method of ["compileStreaming", "instantiateStreaming"]) {
for (const status of statuses) {
promise_test(t => {
const response = fetch(`status.py?status=${status}`);
return promise_rejects_js(t, TypeError, WebAssembly[method](response));
}, `Response with status ${status}: ${method}`);
}
}