-
Notifications
You must be signed in to change notification settings - Fork 107
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
clock.next()
only fires a single timer, even if multiple timers scheduled at the same time
#250
Comments
The current behavior is what I would expect - timers are guaranteed to be in order - what would you prefer? |
I think I'd prefer all timers at that point in time to fire. So
rather than
So essentially Did that make sense? I'm confusing myself with my wording 😛 |
How would you only run one timer in that case? |
You wouldn't, just like real code wouldn't be able to interject between to real |
E.g. let foo = false;
let bar = true;
setTimeout(() => {
foo = true
}, 10)
setTimeout(() => {
bar = false
}, 10)
const foobar = foo && bar
foobar === true // this should never be observable |
Right but real code might want to assert that the first timer runs before the second: let foo = false;
let bar = true;
// file1
setTimeout(() => {
bar = true;
foo = true
}, 10);
// file 2
setTimeout(() => {
bar = false
}, 10); How do I assert that the first timer ran before the second here? |
You wouldn't be able to. I'd get on my high horse and say you're trying to test unobservable implementation details, and being able to do so illustrates a leaky abstraction. However, since this is the real world and we should be more pragmatic, I agree that this is a valid use case that would not be possible anymore if we go with my suggestion. I'm arguing that's a good thing, but I fully understand that not everybody will agree with me (and again, I can work around this easily in my own code). Happy to close this out, it's been a good discussion |
Well, I am not yet convinced one way or another 😅 |
@fatso83 thoughts? |
@SimenB I'm trusting you guys :-) But seriously, I think the current implementation is the expected behaviour for that method. Still, I'm a pleaser; couldn't we add a |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
Since it's not immediately obvious the current approach is wrong/confusing I'll just close this. Thanks! |
Jest recently merged a PR adding
advanceTimersToNextTimer
: jestjs/jest#8713. I assumed the lolex implementation of this would just be callingclock.next()
, but that only fires a single timer.What did you expect to happen?
That if I advance time to the first timer, all timers scheduled at that moment in time fires. Otherwise, code triggers that never would in real code.
What actually happens
Only the first timer triggered. As can be seen in the above linked example, doing
behaves the way I want. So I'm able to work around it, but I'm not sure if the current behavior in Lolex is correct?
How to reproduce
See linked runkit
The text was updated successfully, but these errors were encountered: