-
Notifications
You must be signed in to change notification settings - Fork 418
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix Scheduler
tests consistently failing on CI (Linux, Firefox)
#921
Labels
Comments
4 tasks
I investigated this locally and can reproduce the issue. In isolation the tests run just fine: Work in progress draft PR up at #922. |
nikku
added a commit
that referenced
this issue
Oct 1, 2024
Requests to requestAnimationFrame may be dropped, depending on how the browser feels. If we want to reliably ensure work gets done, we have to setTimeout(work) things. Closes #921
Scheduler
tests consistently failing on CI (Linux, Firefox)Scheduler
tests consistently failing on CI (Linux, Firefox)
Cf. #922 (comment) |
nikku
added a commit
that referenced
this issue
Oct 2, 2024
Requests to requestAnimationFrame may be dropped, depending on how the browser feels. If we want to reliably ensure work gets done, we have to setTimeout(work) things. Closes #921
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
What should we do?
As mentioned by @marstamm in #920 (comment) the CI tests consistently fail on Linux, Firefox after the introduction of the scheduler f7b95f2#diff-4b07ab4f15eebbd591cbc13b0b12a96714c31f1caf51176504a929aa98dec27fR17.
The initial version of the scheduler tests passed CI; I'm not sure how we could miss the new version of the tests failing on Firefox. We want to investigate what's up and ensure our CI is stable, green, again.
Why should we do it?
Ensure our CI is reliable.
The text was updated successfully, but these errors were encountered: