summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2023-06-13 09:36:21 -0400
committerGitHub <noreply@github.com>2023-06-13 09:36:21 -0400
commit3191ffdaafccca53eddfe0672c8b4cb6d428caba (patch)
tree8425b84a4343cdc731d6bad2aef45db0e20d467f
parent39bf1d2fd50a6921eef9e8f9a3f28c3c2b86d0fe (diff)
chore(repl): mark some tests as flaky (#19475)
-rw-r--r--cli/tests/integration/repl_tests.rs10
1 files changed, 5 insertions, 5 deletions
diff --git a/cli/tests/integration/repl_tests.rs b/cli/tests/integration/repl_tests.rs
index c25a151a1..9f37679ef 100644
--- a/cli/tests/integration/repl_tests.rs
+++ b/cli/tests/integration/repl_tests.rs
@@ -744,7 +744,7 @@ fn eval_file_flag_multiple_files() {
assert_contains!(err, "Download");
}
-#[test]
+#[flaky_test::flaky_test]
fn pty_clear_function() {
util::with_pty(&["repl"], |mut console| {
console.write_line("console.log('h' + 'ello');");
@@ -801,7 +801,7 @@ fn repl_error() {
});
}
-#[test]
+#[flaky_test::flaky_test]
fn repl_reject() {
util::with_pty(&["repl"], |mut console| {
console.write_line("console.log(1);");
@@ -820,7 +820,7 @@ fn repl_reject() {
});
}
-#[test]
+#[flaky_test::flaky_test]
fn repl_report_error() {
util::with_pty(&["repl"], |mut console| {
console.write_line("console.log(1);");
@@ -834,7 +834,7 @@ fn repl_report_error() {
});
}
-#[test]
+#[flaky_test::flaky_test]
fn repl_error_undefined() {
util::with_pty(&["repl"], |mut console| {
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() {
let test_context = TestContextBuilder::for_npm()
.use_temp_cwd()