diff options
author | Casper Beyer <caspervonb@pm.me> | 2021-02-22 00:21:25 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-21 17:21:25 +0100 |
commit | eefd522f0490f9bb829de9342dcd1ed7aeacb42a (patch) | |
tree | bd0663e192a69c911dcb1b24f766b7ce4e99f656 /cli/tests/integration_tests.rs | |
parent | b47f9cee8cceabb3784259dd260bc5e633446b04 (diff) |
fix(runtime/testing): false positive for timers when an error is thrown (#9553)
Diffstat (limited to 'cli/tests/integration_tests.rs')
-rw-r--r-- | cli/tests/integration_tests.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/cli/tests/integration_tests.rs b/cli/tests/integration_tests.rs index cd90315b3..bb65f24fa 100644 --- a/cli/tests/integration_tests.rs +++ b/cli/tests/integration_tests.rs @@ -2402,6 +2402,12 @@ mod integration { output: "deno_test.out", }); + itest!(deno_test_finally_cleartimeout { + args: "test test_finally_cleartimeout.ts", + exit_code: 1, + output: "test_finally_cleartimeout.out", + }); + itest!(deno_test_unresolved_promise { args: "test test_unresolved_promise.js", exit_code: 1, |