summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/install
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/testdata/install')
-rw-r--r--cli/tests/testdata/install/check_local_by_default.ts3
-rw-r--r--cli/tests/testdata/install/check_local_by_default2.ts6
2 files changed, 0 insertions, 9 deletions
diff --git a/cli/tests/testdata/install/check_local_by_default.ts b/cli/tests/testdata/install/check_local_by_default.ts
deleted file mode 100644
index 2ae8c2692..000000000
--- a/cli/tests/testdata/install/check_local_by_default.ts
+++ /dev/null
@@ -1,3 +0,0 @@
-import * as a from "http://localhost:4545/subdir/type_error.ts";
-
-console.log(a.a);
diff --git a/cli/tests/testdata/install/check_local_by_default2.ts b/cli/tests/testdata/install/check_local_by_default2.ts
deleted file mode 100644
index 5177ff944..000000000
--- a/cli/tests/testdata/install/check_local_by_default2.ts
+++ /dev/null
@@ -1,6 +0,0 @@
-import * as a from "http://localhost:4545/subdir/type_error.ts";
-
-const b: "b" = 12;
-
-console.log(a.a);
-console.log(b);