summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/semantics/scripting-1/the-script-element/import-attributes/dynamic-import-with-attributes-argument.any.js
blob: 2addb0fcb91e7ce2388c4bc2162b1c19fced9074 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// 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");