11cb0ef41Sopenharmony_ci// META: global=window,worker 21cb0ef41Sopenharmony_ci 31cb0ef41Sopenharmony_cifor (const method of ["compileStreaming", "instantiateStreaming"]) { 41cb0ef41Sopenharmony_ci promise_test(t => { 51cb0ef41Sopenharmony_ci const error = { "name": "custom error" }; 61cb0ef41Sopenharmony_ci const promise = Promise.reject(error); 71cb0ef41Sopenharmony_ci return promise_rejects_exactly(t, error, WebAssembly[method](promise)); 81cb0ef41Sopenharmony_ci }, `${method}`); 91cb0ef41Sopenharmony_ci} 10