summaryrefslogtreecommitdiff
path: root/tests/testdata/run/top_level_await/circular.js
diff options
context:
space:
mode:
Diffstat (limited to 'tests/testdata/run/top_level_await/circular.js')
-rw-r--r--tests/testdata/run/top_level_await/circular.js8
1 files changed, 0 insertions, 8 deletions
diff --git a/tests/testdata/run/top_level_await/circular.js b/tests/testdata/run/top_level_await/circular.js
deleted file mode 100644
index ff2964b6a..000000000
--- a/tests/testdata/run/top_level_await/circular.js
+++ /dev/null
@@ -1,8 +0,0 @@
-import { foo } from "./tla3/timeout_loop.js";
-
-export const collection = [];
-
-const mod = await import("./tla3/b.js");
-
-console.log("foo in main", foo);
-console.log("mod", mod);