Skip to content
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

refactor(timers): Refactor timers to use one async op per timer #12862

Merged
merged 16 commits into from
Dec 7, 2021
Prev Previous commit
Next Next commit
Add a wildcard to dispatched/completed ops in op_sanitizer_unstable
  • Loading branch information
Andreu Botella committed Nov 28, 2021
commit d5a93c3409f4227b1543188b897adc385bdc2a01
8 changes: 4 additions & 4 deletions cli/tests/testdata/test/ops_sanitizer_unstable.out
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,16 @@ Before:
- dispatched: 1
- completed: 1
After:
- dispatched: 4
- completed: 3
- dispatched: [WILDCARD]
- completed: [WILDCARD]
Ops:
op_sleep:
Before:
- dispatched: 1
- completed: 1
After:
- dispatched: 4
- completed: 3
- dispatched: [WILDCARD]
- completed: [WILDCARD]

Make sure to await all promises returned from Deno APIs before
finishing test case.
Expand Down