sableland / sable

JavaScript runtime Deno was meant to be.
MIT License
34 stars 5 forks source link

fix(timers): Fix bug where timers registered in a microtask might not run #54

Closed andreubotella closed 7 months ago

andreubotella commented 7 months ago

Closes #53.

andreubotella commented 7 months ago

Don't merge yet, the test currently succeeds even with this fix because unresolved promises are not being detected in the test runner.

andreubotella commented 7 months ago

Turns out, awaiting the test was enough to detect unresolved promises in this case. So this is now ready to review.