From fec28daf3c4538d71b689b9c3a29f5305cd96f7b Mon Sep 17 00:00:00 2001 From: David Sherret Date: Fri, 22 Apr 2022 17:49:10 -0400 Subject: [PATCH] chore(tests): fix pty_clear_function on Windows (#14364) --- cli/tests/integration/repl_tests.rs | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/cli/tests/integration/repl_tests.rs b/cli/tests/integration/repl_tests.rs index 05a17d4b73..0fca594733 100644 --- a/cli/tests/integration/repl_tests.rs +++ b/cli/tests/integration/repl_tests.rs @@ -767,15 +767,22 @@ fn pty_clear_function() { util::with_pty(&["repl"], |mut console| { console.write_line("console.log('hello');"); console.write_line("clear();"); - console.write_line("const clear = 1 + 2;"); + console.write_line("const clear = 1234 + 2000;"); console.write_line("clear;"); console.write_line("close();"); let output = console.read_all_output(); - assert!(output.contains("hello")); - assert!(output.contains("[1;1H")); + if cfg!(windows) { + // Windows will overwrite what's in the console buffer before + // we read from it. It contains this string repeated many times + // to clear the screen. + assert!(output.contains("\r\n\u{1b}[K\r\n\u{1b}[K\r\n\u{1b}[K")); + } else { + assert!(output.contains("hello")); + assert!(output.contains("[1;1H")); + } assert!(output.contains("undefined")); - assert!(output.contains("const clear = 1 + 2;")); - assert!(output.contains('3')); + assert!(output.contains("const clear = 1234 + 2000;")); + assert!(output.contains("3234")); }); }