diff options
author | Andreu Botella <abb@randomunok.com> | 2021-12-07 13:39:58 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-07 13:39:58 +0100 |
commit | 33da15ae5aa1b454d1a73eb5fbc3135927122988 (patch) | |
tree | 92bd8c024b4cabc32337a6169808e64d1f814819 /cli/tests/integration/test_tests.rs | |
parent | 5027826a6407c96a973155be0620b458ab74d974 (diff) |
refactor(timers): refactor timers to use one async op per timer (#12862)
This change also makes the timers implementation closer to the spec, and
sets up the stage to implement AbortSignal.timeout() (whatwg/dom#1032).
Fixes #8965
Fixes #10974
Fixes #11398
Diffstat (limited to 'cli/tests/integration/test_tests.rs')
-rw-r--r-- | cli/tests/integration/test_tests.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/cli/tests/integration/test_tests.rs b/cli/tests/integration/test_tests.rs index bddb0cc6e..effd615f6 100644 --- a/cli/tests/integration/test_tests.rs +++ b/cli/tests/integration/test_tests.rs @@ -156,6 +156,12 @@ itest!(ops_sanitizer_timeout_failure { output: "test/ops_sanitizer_timeout_failure.out", }); +itest!(ops_sanitizer_multiple_timeout_tests { + args: "test test/ops_sanitizer_multiple_timeout_tests.ts", + exit_code: 1, + output: "test/ops_sanitizer_multiple_timeout_tests.out", +}); + itest!(ops_sanitizer_nexttick { args: "test test/ops_sanitizer_nexttick.ts", output: "test/ops_sanitizer_nexttick.out", |