1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-05 13:59:01 -05:00
denoland-deno/cli/tests/node_compat/test/parallel/test-worker-threads-broadcast-channel.js

10 lines
222 B
JavaScript
Raw Normal View History

// deno-fmt-ignore-file
// deno-lint-ignore-file
"use strict";
const assert = require("assert/strict");
const worker_threads = require("worker_threads");
assert.equal(BroadcastChannel, worker_threads.BroadcastChannel);