mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 15:04:11 -05:00
test: disable run_watch_external_watch_files on macOS (#16477)
This test has hung a lot recently on macOS. I am not sure if this is because of a bug in the test or because of the macOS runner that is extremely slow and flaky in general.
This commit is contained in:
parent
207dd8d111
commit
3922ceda03
1 changed files with 4 additions and 0 deletions
|
@ -582,6 +582,10 @@ fn run_watch_no_dynamic() {
|
|||
check_alive_then_kill(child);
|
||||
}
|
||||
|
||||
// TODO(bartlomieju): this test became flaky on macOS runner; it is unclear
|
||||
// if that's because of a bug in code or the runner itself. We should reenable
|
||||
// it once we upgrade to XL runners for macOS.
|
||||
#[cfg(not(target_os = "macos"))]
|
||||
#[test]
|
||||
fn run_watch_external_watch_files() {
|
||||
let t = TempDir::new();
|
||||
|
|
Loading…
Reference in a new issue