Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

  • This WPT test may be referenced by the following Test IDs:
    • /html/semantics/scripting-1/the-script-element/import-attributes/dynamic-import-with-attributes-argument.any.html - WPT Dashboard Interop Dashboard
    • /html/semantics/scripting-1/the-script-element/import-attributes/dynamic-import-with-attributes-argument.any.sharedworker.html - WPT Dashboard Interop Dashboard
    • /html/semantics/scripting-1/the-script-element/import-attributes/dynamic-import-with-attributes-argument.any.worker.html - WPT Dashboard Interop Dashboard
// META: global=window,dedicatedworker,sharedworker
promise_test(async test => {
const result = await import("./export-hello.js", { with: { } });
assert_equals(result.default, "hello");
}, "Dynamic import with an empty with clause should succeed");
promise_test(async test => {
return promise_rejects_js(test, TypeError,
import("./export-hello.js", { with: { unsupportedAssertionKey: "unsupportedAssertionValue"} }),
"Dynamic import with an unsupported import attribute should fail");
}, "Dynamic import with an unsupported import attribute should fail");
promise_test(test => {
return promise_rejects_js(test, TypeError,
import("./export-hello.js", { with: { type: "notARealType"} } ),
"Dynamic import with an unsupported type attribute should fail");
}, "Dynamic import with an unsupported type attribute should fail");