summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/workers/close_nested_parent.js
blob: c5df182d62a578418eb3e601a1c35ad3dd764b86 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.

console.log("Starting the parent worker");

new Worker(
  import.meta.resolve("./close_nested_child.js"),
  { type: "module" },
);

self.addEventListener("message", () => {
  console.log("Closing");
  self.close();
});