summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/workers/close_nested_parent.js
blob: c528632ce8a5eb80575681dcf1a820e64449f542 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright 2018-2021 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();
});