Newer
Older
minerva / Userland / Libraries / LibJS / Tests / modules / string-import-names.mjs
@minerva minerva on 13 Jul 386 bytes Initial commit
import { "*" as starImport, "" as emptyImport } from "./default-and-star-export.mjs";

import {
    "*" as starImportIndirect,
    "" as emptyImportIndirect,
} from "./default-and-star-export-indirect.mjs";

export const passed =
    starImport === "starExportValue" &&
    starImportIndirect === "starExportValue" &&
    emptyImport === "empty" &&
    emptyImportIndirect === "empty";