Bug 1892041 - Part 2: Update test262. r=spidermonkey-reviewers,dminor
[gecko.git] / js / src / tests / test262 / language / module-code / export-expname-import-string-binding.js
blobd91875af2c3fc28f652ff7ecbd5c9e3999b9feee
1 // |reftest| module
2 // Copyright (C) 2020 Bradley Farias. All rights reserved.
3 // This code is governed by the BSD license found in the LICENSE file.
4 /*---
5 description: >
6   ImportSpecifier :
7     ModuleExportName `as` IdentifierName
8   esid: prod-ImportSpecifier
9 info: |
10   ImportSpecifier :
11     ModuleExportName `as` IdentifierName
13 flags: [module]
14 features: [arbitrary-module-namespace-names]
15 ---*/
16 import { "☿" as Ami } from "./export-expname_FIXTURE.js";
18 assert.sameValue(Ami, globalThis.Mercury);
20 reportCompare(0, 0);