diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2023-01-13 15:19:20 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-13 15:19:20 +0100 |
commit | 9644220df2f03efa75fcd63a7d37fb5903b5ff08 (patch) | |
tree | 4f6c9e1da5dace9a8434fe14d5ff481bd1e2f135 | |
parent | 291dcc31f778dc137f33b39d4750ed478a223ebd (diff) |
tests: Disable flaky flash_shutdown test (#17390)
-rw-r--r-- | cli/tests/integration/run_tests.rs | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/cli/tests/integration/run_tests.rs b/cli/tests/integration/run_tests.rs index 149aad0b3..c91169f1a 100644 --- a/cli/tests/integration/run_tests.rs +++ b/cli/tests/integration/run_tests.rs @@ -3689,11 +3689,12 @@ itest!(config_file_lock_true { exit_code: 10, }); -// Check https://github.com/denoland/deno_std/issues/2882 -itest!(flash_shutdown { - args: "run --unstable --allow-net run/flash_shutdown/main.ts", - exit_code: 0, -}); +// TODO(bartlomieju): this test is flaky on CI, reenable it after debugging +// // Check https://github.com/denoland/deno_std/issues/2882 +// itest!(flash_shutdown { +// args: "run --unstable --allow-net run/flash_shutdown/main.ts", +// exit_code: 0, +// }); itest!(permission_args { args: "run run/001_hello.js --allow-net", |