summaryrefslogtreecommitdiff
path: root/cli/tests
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests')
-rw-r--r--cli/tests/068_cache_test_type_error.out4
-rw-r--r--cli/tests/integration_tests.rs12
-rw-r--r--cli/tests/test_type_error/foo_test.ts2
3 files changed, 0 insertions, 18 deletions
diff --git a/cli/tests/068_cache_test_type_error.out b/cli/tests/068_cache_test_type_error.out
deleted file mode 100644
index f67ee6647..000000000
--- a/cli/tests/068_cache_test_type_error.out
+++ /dev/null
@@ -1,4 +0,0 @@
-[WILDCARD]error: TS2322 [ERROR]: Type 'number' is not assignable to type 'string'.
-const a: string = 1;
- ^
- at [WILDCARD]foo_test.ts[WILDCARD]
diff --git a/cli/tests/integration_tests.rs b/cli/tests/integration_tests.rs
index b448379b9..11240e71b 100644
--- a/cli/tests/integration_tests.rs
+++ b/cli/tests/integration_tests.rs
@@ -2137,18 +2137,6 @@ fn _066_prompt() {
util::test_pty(args, output, input);
}
-itest!(_068_cache_test_type_error {
- args: "cache --test=test_type_error",
- output: "068_cache_test_type_error.out",
- exit_code: 1,
-});
-
-itest!(_069_cache_worker {
- args: "cache --worker subdir/worker_globals.ts",
- output_str: Some("[WILDCARD]"),
- exit_code: 0,
-});
-
itest!(_073_worker_error {
args: "run -A 073_worker_error.ts",
output: "073_worker_error.ts.out",
diff --git a/cli/tests/test_type_error/foo_test.ts b/cli/tests/test_type_error/foo_test.ts
deleted file mode 100644
index 229e74798..000000000
--- a/cli/tests/test_type_error/foo_test.ts
+++ /dev/null
@@ -1,2 +0,0 @@
-/* eslint-disable */
-const a: string = 1;