ladybird/Libraries/LibJS/Tests/modules/namespace-order.mjs
Timothy Flynn 019c529c07 Meta: Increase the line length enforced by prettier to 120
This matches our coding style recommendation in CodingStyle.md, and
matches our python formatting.
2025-10-31 19:55:50 -04:00

15 lines
599 B
JavaScript

import * as ns from "./default-and-star-export.mjs";
const keys = Reflect.ownKeys(ns);
// The keys should be in alphabetical order and @@toString at the end
if (keys.length < 4) throw new Error("Expected at least 3 keys and @@toStringTag");
if (keys[0] !== "") throw new Error('Expected keys[0] === ""');
if (keys[1] !== "*") throw new Error('Expected keys[1] === "*"');
if (keys[2] !== "default") throw new Error('Expected keys[2] === "default"');
if (keys.indexOf(Symbol.toStringTag) <= 2) throw new Error("Expected Symbol.toStringTag to be behind string keys");
export const passed = true;