summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/wasm/webapi/status.any.js
blob: f3859646cc54b9ebd3106f2614828f956cd95205 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// 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}`);
  }
}