Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/main' into remove-js-error-wra…
Browse files Browse the repository at this point in the history
…ppers
  • Loading branch information
nayeemrmn committed Apr 26, 2022
2 parents 7daa299 + f07f246 commit e435052
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion cli/tests/integration/repl_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,11 @@ fn pty_complete_imports() {

let output = console.read_all_output();
assert!(output.contains("Hello World"));
assert!(output.contains("testing output\u{1b}"));
if cfg!(windows) {
assert!(output.contains("testing output\u{1b}"));
} else {
assert!(output.contains("\ntesting output"));
}
});

// ensure when the directory changes that the suggestions come from the cwd
Expand Down

0 comments on commit e435052

Please sign in to comment.