• File: context.test.js
  • Full Path: /var/www/nodejs/simo_meps_file_script/node_modules/thread-stream/test/context.test.js
  • Date Modified: 02/28/2025 8:55 PM
  • File size: 504 bytes
  • MIME-type: text/plain
  • Charset: utf-8
'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')
})