summaryrefslogtreecommitdiff
path: root/cli/tests
diff options
context:
space:
mode:
authorYusuke Sakurai <kerokerokerop@gmail.com>2020-03-09 01:10:45 +0900
committerGitHub <noreply@github.com>2020-03-08 17:10:45 +0100
commit6f0b70eb1e0061a0033d89a916075d27023c57a8 (patch)
tree7216a8fb0920890a9fd053970f5753d32ad7e1bb /cli/tests
parent1b6f8318750d319d689f7eeef9e7e1f2e56b94a6 (diff)
disable test_raw_tty (#4282)
Diffstat (limited to 'cli/tests')
-rw-r--r--cli/tests/integration_tests.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/cli/tests/integration_tests.rs b/cli/tests/integration_tests.rs
index eea5da492..20a2a983b 100644
--- a/cli/tests/integration_tests.rs
+++ b/cli/tests/integration_tests.rs
@@ -7,8 +7,11 @@ extern crate nix;
extern crate pty;
extern crate tempfile;
+// TODO re-enable. This hangs on macOS
+// https://github.com/denoland/deno/issues/4262
#[cfg(unix)]
#[test]
+#[ignore]
pub fn test_raw_tty() {
use pty::fork::*;
use std::io::{Read, Write};