summaryrefslogtreecommitdiff
path: root/tests/integration/run_tests.rs
diff options
context:
space:
mode:
authorKenta Moriuchi <moriken@kimamass.com>2024-04-30 05:43:05 +0900
committerGitHub <noreply@github.com>2024-04-29 22:43:05 +0200
commit783533d2e354ad73356d7517b26293e48c10fc17 (patch)
tree68bd0fa01c59ab9c4ad6d2010fabb9babf6d8d85 /tests/integration/run_tests.rs
parent4384a126bb759580777e7a2678fe49bb015f2f69 (diff)
FUTURE: remove import assertions support for JavaScript (#23541)
Ref #17944, https://github.com/swc-project/swc/issues/8893 TypeScript removes the `assert` keywords in the transpile, so this PR only works for JavaScript files
Diffstat (limited to 'tests/integration/run_tests.rs')
-rw-r--r--tests/integration/run_tests.rs10
1 files changed, 0 insertions, 10 deletions
diff --git a/tests/integration/run_tests.rs b/tests/integration/run_tests.rs
index e28251b23..e92fd3627 100644
--- a/tests/integration/run_tests.rs
+++ b/tests/integration/run_tests.rs
@@ -1694,16 +1694,6 @@ fn type_directives_js_main() {
assert_not_contains!(output.combined_output(), "type_reference.d.ts");
}
-#[test]
-fn test_deno_futures_env() {
- let context = TestContextBuilder::new().add_future_env_vars().build();
- let output = context
- .new_command()
- .args("run --quiet --reload run/deno_futures_env.ts")
- .run();
- output.assert_exit_code(0);
-}
-
itest!(type_directives_redirect {
args: "run --reload --check run/type_directives_redirect.ts",
output: "run/type_directives_redirect.ts.out",