Sleep between file copies and serve for macOS serve tests (#945)

This commit is contained in:
Kenneth Loeffler
2024-07-20 09:52:05 -07:00
committed by GitHub
parent 3ca975d81d
commit 5f7dd45361

View File

@@ -83,6 +83,15 @@ impl TestServeSession {
.expect("Couldn't copy project to temporary directory");
};
// This is an ugly workaround for FSEvents sometimes reporting events
// for the above copy operations, similar to this Stack Overflow question:
// https://stackoverflow.com/questions/47679298/howto-avoid-receiving-old-events-in-fseventstream-callback-fsevents-framework-o
// We'll hope that 100ms is enough for FSEvents to get whatever it is
// out of its system.
// TODO: find a better way to avoid processing these spurious events.
#[cfg(target_os = "macos")]
std::thread::sleep(Duration::from_millis(100));
let port = get_port_number();
let port_string = port.to_string();