mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
796f3d0af4
PR-URL: https://github.com/nodejs/node/pull/29866 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Myles Borins <myles.borins@gmail.com>
16 lines
406 B
JavaScript
16 lines
406 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const fixtures = require('../common/fixtures');
|
|
const assert = require('assert');
|
|
const { Worker } = require('worker_threads');
|
|
|
|
const workerData = 'Hello from main thread';
|
|
|
|
const worker = new Worker(fixtures.path('worker-data.mjs'), {
|
|
workerData
|
|
});
|
|
|
|
worker.on('message', common.mustCall((message) => {
|
|
assert.strictEqual(message, workerData);
|
|
}));
|