Bug 1892041 - Part 2: Update test262. r=spidermonkey-reviewers,dminor
[gecko.git] / js / src / tests / test262 / language / module-code / top-level-await / async-module-does-not-block-sibling-modules.js
blobc7c5e2f35f48de9c2ea305ade99f34bf9bdbdcb1
1 // |reftest| module async
2 // Copyright (C) 2023 Igalia, S.L. All rights reserved.
3 // This code is governed by the BSD license found in the LICENSE file.
5 /*---
6 esid: sec-innermoduleevaluation
7 description: >
8   While an asynchronous module is waiting for a promise resolution,
9   sibling modules in the modules graph must be evaluated.
10 flags: [module, async]
11 features: [top-level-await]
12 ---*/
14 import "./async-module-tla_FIXTURE.js";
15 import { check } from "./async-module-sync_FIXTURE.js";
16 assert.sameValue(check, false);
17 $DONE();