dieumercimvemba's picture
download
raw
684 Bytes
'use strict'
const { test } = require('tap')
const { join } = require('path')
const { once } = require('events')
const { MessageChannel } = require('worker_threads')
const ThreadStream = require('..')
test('message events emitted on the stream are posted to the worker', async function (t) {
t.plan(1)
const { port1, port2 } = new MessageChannel()
const stream = new ThreadStream({
filename: join(__dirname, 'on-message.js'),
sync: false
})
t.teardown(() => {
stream.end()
})
stream.emit('message', { text: 'hello', takeThisPortPlease: port1 }, [port1])
const [confirmation] = await once(port2, 'message')
t.equal(confirmation, 'received: hello')
})

Xet Storage Details

Size:
684 Bytes
·
Xet hash:
6f1328b5e122b3d11f1ff76334e03cecf10cef28499ef92a6f7cc58545698955

Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.