diff options
author | Andreu Botella <abb@randomunok.com> | 2021-07-17 00:51:06 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-17 08:51:06 +1000 |
commit | 240545282a87307829df1aafe74031a382d1ce33 (patch) | |
tree | 249bae737802cb62a0f80b7dbfad300a462848b4 /cli/tests/integration/run_tests.rs | |
parent | 91bbd1a6d5ec21595efe790ff482c7a96b7fafb4 (diff) |
fix(workers): silently ignore non-existent worker IDs (#11417)
Fixes #11416
Diffstat (limited to 'cli/tests/integration/run_tests.rs')
-rw-r--r-- | cli/tests/integration/run_tests.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/cli/tests/integration/run_tests.rs b/cli/tests/integration/run_tests.rs index 2e2b0400c..08e0c8306 100644 --- a/cli/tests/integration/run_tests.rs +++ b/cli/tests/integration/run_tests.rs @@ -1160,6 +1160,11 @@ itest!(worker_event_handler_test { output: "worker_event_handler_test.js.out", }); +itest!(worker_close_race { + args: "run --quiet --reload --allow-read worker_close_race.js", + output: "worker_close_race.js.out", +}); + #[test] fn no_validate_asm() { let output = util::deno_cmd() |