diff options
author | HasanAlrimawi <141642411+HasanAlrimawi@users.noreply.github.com> | 2024-09-03 18:14:19 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-03 15:14:19 +0000 |
commit | 1d04c84c8f36a88697c82cf98587a5728952314f (patch) | |
tree | 16d57ecda9e50197a2f6e8443bb6b6eebd92ec86 /tests/testdata | |
parent | b8ed6f822174b2322fbe9f8b58698b76b5505b4a (diff) |
chore: deprecate eval itests (#25382)
This PR serves as a part of #22907 .
---------
Signed-off-by: David Sherret <dsherret@users.noreply.github.com>
Co-authored-by: Bartek IwaĆczuk <biwanczuk@gmail.com>
Co-authored-by: David Sherret <dsherret@users.noreply.github.com>
Diffstat (limited to 'tests/testdata')
-rw-r--r-- | tests/testdata/eval/check_local_by_default.out | 1 | ||||
-rw-r--r-- | tests/testdata/eval/check_local_by_default2.out | 3 | ||||
-rw-r--r-- | tests/testdata/eval/check_local_by_default2.ts | 6 | ||||
-rw-r--r-- | tests/testdata/eval/dyn_import_eval.out | 1 | ||||
-rw-r--r-- | tests/testdata/eval/env_file_missing.out | 2 |
5 files changed, 0 insertions, 13 deletions
diff --git a/tests/testdata/eval/check_local_by_default.out b/tests/testdata/eval/check_local_by_default.out deleted file mode 100644 index 52d98849f..000000000 --- a/tests/testdata/eval/check_local_by_default.out +++ /dev/null @@ -1 +0,0 @@ -[Module: null prototype] { a: 12 } diff --git a/tests/testdata/eval/check_local_by_default2.out b/tests/testdata/eval/check_local_by_default2.out deleted file mode 100644 index 26a1fe6f8..000000000 --- a/tests/testdata/eval/check_local_by_default2.out +++ /dev/null @@ -1,3 +0,0 @@ -12 -12 -[Module: null prototype] { } diff --git a/tests/testdata/eval/check_local_by_default2.ts b/tests/testdata/eval/check_local_by_default2.ts deleted file mode 100644 index 5177ff944..000000000 --- a/tests/testdata/eval/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); diff --git a/tests/testdata/eval/dyn_import_eval.out b/tests/testdata/eval/dyn_import_eval.out deleted file mode 100644 index 89e16b478..000000000 --- a/tests/testdata/eval/dyn_import_eval.out +++ /dev/null @@ -1 +0,0 @@ -[Module: null prototype] { isMod4: true } diff --git a/tests/testdata/eval/env_file_missing.out b/tests/testdata/eval/env_file_missing.out deleted file mode 100644 index b9e219af3..000000000 --- a/tests/testdata/eval/env_file_missing.out +++ /dev/null @@ -1,2 +0,0 @@ -Warning The `--env-file` flag was used, but the environment file specified 'missing' was not found. -undefined |