mirror of
https://github.com/rojo-rbx/rojo.git
synced 2026-04-23 14:15:24 +00:00
Sleep between file copies and serve for macOS serve tests (#945)
This commit is contained in:
@@ -83,6 +83,15 @@ impl TestServeSession {
|
|||||||
.expect("Couldn't copy project to temporary directory");
|
.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 = get_port_number();
|
||||||
let port_string = port.to_string();
|
let port_string = port.to_string();
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user