mirror of
https://github.com/denoland/deno.git
synced 2024-10-31 09:14:20 -04:00
30 lines
854 B
TypeScript
30 lines
854 B
TypeScript
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
|
import { assertEquals } from "../../../test_util/std/testing/asserts.ts";
|
|
import { deferred } from "../../../test_util/std/async/deferred.ts";
|
|
|
|
Deno.test("broadcastchannel worker", async () => {
|
|
const intercom = new BroadcastChannel("intercom");
|
|
let count = 0;
|
|
|
|
const url = new URL(
|
|
"../testdata/workers/broadcast_channel.ts",
|
|
import.meta.url,
|
|
);
|
|
const worker = new Worker(url.href, { type: "module", name: "worker" });
|
|
worker.onmessage = () => intercom.postMessage(++count);
|
|
|
|
const promise = deferred();
|
|
|
|
intercom.onmessage = function (e) {
|
|
assertEquals(count, e.data);
|
|
if (count < 42) {
|
|
intercom.postMessage(++count);
|
|
} else {
|
|
worker.terminate();
|
|
intercom.close();
|
|
promise.resolve();
|
|
}
|
|
};
|
|
|
|
await promise;
|
|
});
|