summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/mozilla/tests/html/semantics/scripting-1/the-script-element/support/async_test_module_failure.js
blob: 6f823f3003e022c82189eefe8895ec93d34d6428 (plain)
1
2
3
4
5
6
export default 42;

export const named = 'named';

var rejection = Promise.reject(TypeError('I reject this!'));
await rejection;