summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/run/top_level_await/tla/b.js
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/testdata/run/top_level_await/tla/b.js')
-rw-r--r--cli/tests/testdata/run/top_level_await/tla/b.js7
1 files changed, 0 insertions, 7 deletions
diff --git a/cli/tests/testdata/run/top_level_await/tla/b.js b/cli/tests/testdata/run/top_level_await/tla/b.js
deleted file mode 100644
index 3271c92d8..000000000
--- a/cli/tests/testdata/run/top_level_await/tla/b.js
+++ /dev/null
@@ -1,7 +0,0 @@
-import order from "./order.js";
-
-await new Promise((resolve) => {
- setTimeout(resolve, 200);
-});
-
-order.push("a");