1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 21:27:35 +00:00

LibJS: Put exports before symbols in keys of module namespace object

This commit is contained in:
davidot 2022-08-31 20:31:02 +02:00 committed by Linus Groh
parent fb61e9274a
commit 3b56043612
3 changed files with 27 additions and 4 deletions

View file

@ -182,6 +182,10 @@ describe("in- and exports", () => {
test("can import with (useless) assertions", () => {
expectModulePassed("./import-with-assertions.mjs");
});
test("namespace has expected ordering", () => {
expectModulePassed("./namespace-order.mjs");
});
});
describe("loops", () => {