ladybird/Libraries/LibJS/Tests/modules/import-with-attributes.mjs
Timothy Flynn b64a355a30 LibJS: Remove support for the "assert" keyword for import attributes
This was removed from the spec some time ago. See:
14286bb
2025-01-21 14:58:32 +01:00

4 lines
329 B
JavaScript

import * as self from "./import-with-attributes.mjs" with { key: "value", key2: "value2", default: "shouldwork" };
import "./import-with-attributes.mjs" with { key: "value", key2: "value2", default: "shouldwork" };
export { passed } from "./module-with-default.mjs" with { key: "value", key2: "value2", default: "shouldwork" };