You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
504 B
22 lines
504 B
3 years ago
|
'use strict'
|
||
|
|
||
|
const { test } = require('tap')
|
||
|
const { join } = require('path')
|
||
|
const ThreadStream = require('..')
|
||
|
const { version } = require('../package.json')
|
||
|
require('why-is-node-running')
|
||
|
|
||
|
test('get context', (t) => {
|
||
|
const stream = new ThreadStream({
|
||
|
filename: join(__dirname, 'get-context.js'),
|
||
|
workerData: {},
|
||
|
sync: true
|
||
|
})
|
||
|
t.on('end', () => stream.end())
|
||
|
stream.on('context', (ctx) => {
|
||
|
t.same(ctx.threadStreamVersion, version)
|
||
|
t.end()
|
||
|
})
|
||
|
stream.write('hello')
|
||
|
})
|