diff options
Diffstat (limited to 'tests/specs/run/worker_close_nested/close_nested_child.js')
-rw-r--r-- | tests/specs/run/worker_close_nested/close_nested_child.js | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/specs/run/worker_close_nested/close_nested_child.js b/tests/specs/run/worker_close_nested/close_nested_child.js new file mode 100644 index 000000000..97980c689 --- /dev/null +++ b/tests/specs/run/worker_close_nested/close_nested_child.js @@ -0,0 +1,8 @@ +// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. + +console.log("Starting the child worker"); + +setTimeout(() => { + console.log("The child worker survived the death of the parent!!!"); + Deno.exit(1); +}, 2000); |