summaryrefslogtreecommitdiff
path: root/cli/tests/tty_tests.rs
diff options
context:
space:
mode:
authorRy Dahl <ry@tinyclouds.org>2019-10-29 17:52:57 -0400
committerGitHub <noreply@github.com>2019-10-29 17:52:57 -0400
commit8f571ef166d31f44378c1b6de5f4092fcccef732 (patch)
treec09ffc491e03522141baa51ec004d747ecbe48f1 /cli/tests/tty_tests.rs
parent3c2399e437521122b66a2de735aebbb80a546148 (diff)
Remove TTY tests - dead code (#3229)
Diffstat (limited to 'cli/tests/tty_tests.rs')
-rw-r--r--cli/tests/tty_tests.rs19
1 files changed, 0 insertions, 19 deletions
diff --git a/cli/tests/tty_tests.rs b/cli/tests/tty_tests.rs
deleted file mode 100644
index 60245407e..000000000
--- a/cli/tests/tty_tests.rs
+++ /dev/null
@@ -1,19 +0,0 @@
-// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
-#[macro_use]
-extern crate lazy_static;
-extern crate tempfile;
-mod util;
-use util::*;
-
-// TODO(#2933): Rewrite these tests in rust.
-// TODO(ry) These tests can't run in parallel.
-#[test]
-fn tty_tests() {
- let g = http_server();
- // TODO(ry) Re-enable these flaky tests.
- // run_python_script("tools/complex_permissions_test.py");
- // run_python_script("tools/permission_prompt_test.py");
- // TODO(ry) is_tty_test is not passing on travis when run with "cargo test"
- // run_python_script("tools/is_tty_test.py");
- drop(g);
-}