You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix flakiness of MainDispatcherTestBase.testWithTimeoutContextDelayTi… (#3970)
* Fix flakiness of MainDispatcherTestBase.testWithTimeoutContextDelayTimeout
* On our virtualized Windows CI everything is slow and sub-seconds delays got racy on a regular basis, leading to flaky builds
* Replace withContext(Dispatcher.Main) with launch(Dispatcher.Main, ATOMIC) {}.join() in order to avoid cancellation between dispatch and start race
* An alternative way is to guard it with isJavaAndWindows that effectively disables such test on Windows
0 commit comments