1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-22 23:34:47 -05:00

chore(repl): mark some tests as flaky (#19475)

This commit is contained in:
David Sherret 2023-06-13 09:36:21 -04:00 committed by GitHub
parent 39bf1d2fd5
commit 3191ffdaaf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -744,7 +744,7 @@ fn eval_file_flag_multiple_files() {
assert_contains!(err, "Download"); assert_contains!(err, "Download");
} }
#[test] #[flaky_test::flaky_test]
fn pty_clear_function() { fn pty_clear_function() {
util::with_pty(&["repl"], |mut console| { util::with_pty(&["repl"], |mut console| {
console.write_line("console.log('h' + 'ello');"); console.write_line("console.log('h' + 'ello');");
@ -801,7 +801,7 @@ fn repl_error() {
}); });
} }
#[test] #[flaky_test::flaky_test]
fn repl_reject() { fn repl_reject() {
util::with_pty(&["repl"], |mut console| { util::with_pty(&["repl"], |mut console| {
console.write_line("console.log(1);"); console.write_line("console.log(1);");
@ -820,7 +820,7 @@ fn repl_reject() {
}); });
} }
#[test] #[flaky_test::flaky_test]
fn repl_report_error() { fn repl_report_error() {
util::with_pty(&["repl"], |mut console| { util::with_pty(&["repl"], |mut console| {
console.write_line("console.log(1);"); console.write_line("console.log(1);");
@ -834,7 +834,7 @@ fn repl_report_error() {
}); });
} }
#[test] #[flaky_test::flaky_test]
fn repl_error_undefined() { fn repl_error_undefined() {
util::with_pty(&["repl"], |mut console| { util::with_pty(&["repl"], |mut console| {
console.write_line(r#"throw undefined;"#); console.write_line(r#"throw undefined;"#);
@ -972,7 +972,7 @@ fn pty_tab_indexable_props() {
}); });
} }
#[test] #[flaky_test::flaky_test]
fn package_json_uncached_no_error() { fn package_json_uncached_no_error() {
let test_context = TestContextBuilder::for_npm() let test_context = TestContextBuilder::for_npm()
.use_temp_cwd() .use_temp_cwd()