diff options
Diffstat (limited to 'cli/tests/testdata/workers/close_nested_child.js')
-rw-r--r-- | cli/tests/testdata/workers/close_nested_child.js | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/cli/tests/testdata/workers/close_nested_child.js b/cli/tests/testdata/workers/close_nested_child.js deleted file mode 100644 index 97980c689..000000000 --- a/cli/tests/testdata/workers/close_nested_child.js +++ /dev/null @@ -1,8 +0,0 @@ -// 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); |