Re-enable test on MacOS

This commit is contained in:
YizhePKU 2024-06-03 07:49:20 +08:00
parent 3b59407cfb
commit 5ae2665bb4
3 changed files with 4 additions and 6 deletions

View File

@ -10,8 +10,10 @@
//! will create one for you with sensible defaults.
//!
//! Step 2: Create a PTY and spawn a Nushell process to the slave end.
//! `pty_with_nushell()` will do that for you. It's probably a good idea to pass
//! `--no-config-file` as argument to Nushell.
//! `pty_with_nushell()` will do that for you. Here you can set PWD or pass
//! command line arguments to Nushell. It's always a good idea to pass
//! `--no-config-file`, otherwise Nushell will ask if you want to create one
//! with default, and that messes up the input.
//!
//! Step 3: Wait for Nushell to initialize (sleeping for 500ms should do). On
//! Linux, trying to write to the PTY before Nushell finishes initialization

View File

@ -14,5 +14,4 @@ mod plugins;
mod repl;
mod scope;
mod shell;
#[cfg(not(target_os = "macos"))]
mod terminal;

View File

@ -79,8 +79,5 @@ fn command_hints_are_pwd_aware() {
// Examine the terminal state.
let (row, _col) = extract_cursor(&term);
let text = extract_text(&term);
for line in &text {
println!("{}", line);
}
assert!(text[row - 2].contains("print 'FOO'"));
}