1
0
mirror of https://github.com/tc39/test262.git synced 2025-04-08 19:35:28 +02:00

Use explicit relative paths

This commit is contained in:
André Bargull 2024-07-10 14:03:53 +02:00 committed by Ms2ger
parent 507c28b3f9
commit 0ff7881d75
3 changed files with 4 additions and 4 deletions

@ -1,4 +1,4 @@
// Copyright (C) 2024 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
import "parent-tla_FIXTURE.js";
import "./parent-tla_FIXTURE.js";

@ -1,4 +1,4 @@
// Copyright (C) 2024 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
import "tla_FIXTURE.js"
import "./tla_FIXTURE.js"

@ -7,7 +7,7 @@ flags: [module, async]
features: [top-level-await]
---*/
import "parent-tla_FIXTURE.js";
await import("grandparent-tla_FIXTURE.js");
import "./parent-tla_FIXTURE.js";
await import("./grandparent-tla_FIXTURE.js");
$DONE();