diff options
author | Nayeem Rahman <nayeemrmn99@gmail.com> | 2022-05-10 10:26:57 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-10 11:26:57 +0200 |
commit | cb884de2e92a051785ad4bd741153e69d9d2316c (patch) | |
tree | eca083d597a12f5db69dbbc493f02b1e3e759c78 /cli/tests/integration/run_tests.rs | |
parent | 2f7f41533bf3059bba55b206282080fc70a3eec8 (diff) |
fix(runtime/web_worker): Use biased select when getting module result (#14553)
Diffstat (limited to 'cli/tests/integration/run_tests.rs')
-rw-r--r-- | cli/tests/integration/run_tests.rs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/cli/tests/integration/run_tests.rs b/cli/tests/integration/run_tests.rs index d2f11499b..1cf22a51a 100644 --- a/cli/tests/integration/run_tests.rs +++ b/cli/tests/integration/run_tests.rs @@ -2714,6 +2714,14 @@ itest!(event_listener_error_immediate_exit { exit_code: 1, }); +// https://github.com/denoland/deno/pull/14159#issuecomment-1092285446 +itest!(event_listener_error_immediate_exit_worker { + args: + "run --quiet --unstable -A event_listener_error_immediate_exit_worker.ts", + output: "event_listener_error_immediate_exit_worker.ts.out", + exit_code: 1, +}); + itest!(set_timeout_error { args: "run --quiet set_timeout_error.ts", output: "set_timeout_error.ts.out", |