summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/check/module_detection_force
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/testdata/check/module_detection_force')
-rw-r--r--cli/tests/testdata/check/module_detection_force/import.ts2
-rw-r--r--cli/tests/testdata/check/module_detection_force/main.ts3
2 files changed, 0 insertions, 5 deletions
diff --git a/cli/tests/testdata/check/module_detection_force/import.ts b/cli/tests/testdata/check/module_detection_force/import.ts
deleted file mode 100644
index 66b229870..000000000
--- a/cli/tests/testdata/check/module_detection_force/import.ts
+++ /dev/null
@@ -1,2 +0,0 @@
-const a = 2;
-console.log(a);
diff --git a/cli/tests/testdata/check/module_detection_force/main.ts b/cli/tests/testdata/check/module_detection_force/main.ts
deleted file mode 100644
index a55c9962b..000000000
--- a/cli/tests/testdata/check/module_detection_force/main.ts
+++ /dev/null
@@ -1,3 +0,0 @@
-const a = 1;
-await import("./import.ts");
-console.log(a);