2024-07-25 17:06:19 -04:00
|
|
|
// deno-fmt-ignore-file
|
|
|
|
// deno-lint-ignore-file
|
|
|
|
|
|
|
|
// Copyright Joyent and Node contributors. All rights reserved. MIT license.
|
2024-11-25 08:35:53 -05:00
|
|
|
// Taken from Node 20.11.1
|
2024-07-25 17:06:19 -04:00
|
|
|
// This file is automatically generated by `tests/node_compat/runner/setup.ts`. Do not modify this file manually.
|
|
|
|
|
|
|
|
'use strict';
|
|
|
|
const common = require('../common');
|
|
|
|
const assert = require('assert');
|
|
|
|
const { MessageChannel } = require('worker_threads');
|
|
|
|
|
|
|
|
// Regression test for https://github.com/nodejs/node/issues/28559
|
|
|
|
|
|
|
|
const obj = [
|
|
|
|
[ new SharedArrayBuffer(0), new SharedArrayBuffer(1) ],
|
|
|
|
[ new SharedArrayBuffer(2), new SharedArrayBuffer(3) ],
|
|
|
|
];
|
|
|
|
|
|
|
|
const { port1, port2 } = new MessageChannel();
|
|
|
|
port1.once('message', common.mustCall((message) => {
|
|
|
|
assert.deepStrictEqual(message, obj);
|
|
|
|
}));
|
|
|
|
port2.postMessage(obj);
|