diff options
Diffstat (limited to 'Userland/Libraries/LibJS/Tests/modules/basic-modules.js')
-rw-r--r-- | Userland/Libraries/LibJS/Tests/modules/basic-modules.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Userland/Libraries/LibJS/Tests/modules/basic-modules.js b/Userland/Libraries/LibJS/Tests/modules/basic-modules.js index 2dad8a834b..cf662213fd 100644 --- a/Userland/Libraries/LibJS/Tests/modules/basic-modules.js +++ b/Userland/Libraries/LibJS/Tests/modules/basic-modules.js @@ -190,6 +190,10 @@ describe("in- and exports", () => { test("can have multiple star imports even from the same file", () => { expectModulePassed("./multiple-star-imports.mjs"); }); + + test("can export namespace via binding", () => { + expectModulePassed("./re-export-namespace-via-binding.mjs"); + }); }); describe("loops", () => { |