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.
		
		
		
		
		
			
		
			
				
					
					
						
							25 lines
						
					
					
						
							593 B
						
					
					
				
			
		
		
	
	
							25 lines
						
					
					
						
							593 B
						
					
					
				'use strict'
 | 
						|
 | 
						|
const { test } = require('tap')
 | 
						|
const { join } = require('path')
 | 
						|
const ThreadStream = require('..')
 | 
						|
require('why-is-node-running')
 | 
						|
 | 
						|
test('event propagate', (t) => {
 | 
						|
  const stream = new ThreadStream({
 | 
						|
    filename: join(__dirname, 'emit-event.js'),
 | 
						|
    workerData: {},
 | 
						|
    sync: true
 | 
						|
  })
 | 
						|
  t.on('end', () => stream.end())
 | 
						|
  stream.on('socketError', function (a, b, c, n, error) {
 | 
						|
    t.same(a, 'list')
 | 
						|
    t.same(b, 'of')
 | 
						|
    t.same(c, 'args')
 | 
						|
    t.same(n, 123)
 | 
						|
    t.same(error, new Error('unable to write data to the TCP socket'))
 | 
						|
    t.end()
 | 
						|
  })
 | 
						|
  stream.write('hello')
 | 
						|
})
 |