Disable fsevents tests (#43218) (cherry-pick to preview) (#43401)

zed-zippy[bot] and Conrad Irwin created

Cherry-pick of #43218 to preview

----
They're flakier than phyllo dough, and not nearly as delicious

Release Notes:

- N/A

Co-authored-by: Conrad Irwin <conrad.irwin@gmail.com>

Change summary

crates/fsevent/src/fsevent.rs | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)

Detailed changes

crates/fsevent/src/fsevent.rs 🔗

@@ -372,7 +372,9 @@ unsafe extern "C" {
     pub fn FSEventsGetCurrentEventId() -> u64;
 }
 
-#[cfg(test)]
+// These tests are disabled by default because they seem to be unresolvably flaky.
+// Feel free to bring them back to help test this code
+#[cfg(false)]
 mod tests {
     use super::*;
     use std::{fs, sync::mpsc, thread, time::Duration};