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

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

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

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