2023-01-02 16:00:42 -05:00
|
|
|
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
|
2021-09-24 22:26:57 -04:00
|
|
|
|
|
|
|
// Test that closing a worker which has living child workers will automatically
|
|
|
|
// close the children.
|
|
|
|
|
|
|
|
console.log("Starting the main thread");
|
|
|
|
|
|
|
|
const worker = new Worker(
|
2022-09-19 10:32:21 -04:00
|
|
|
import.meta.resolve("../workers/close_nested_parent.js"),
|
2021-09-24 22:26:57 -04:00
|
|
|
{ type: "module" },
|
|
|
|
);
|
|
|
|
|
|
|
|
setTimeout(() => {
|
|
|
|
console.log("About to close");
|
|
|
|
worker.postMessage({});
|
|
|
|
|
|
|
|
// Keep the process running for another two seconds, to make sure there's no
|
|
|
|
// output from the child worker.
|
|
|
|
setTimeout(() => {}, 2000);
|
|
|
|
}, 1000);
|