fix: race condition in utilityProcess tests (#45926)

This commit is contained in:
Charles Kerr 2025-03-09 17:37:35 -05:00 committed by GitHub
parent b30f31e1f6
commit 8ac061ebe7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -228,7 +228,6 @@ describe('utilityProcess module', () => {
const child = utilityProcess.fork(fixtureFile, [], {
stdio: 'pipe'
});
await once(child, 'spawn');
expect(child.stdout).to.not.be.null();
let log = '';
child.stdout!.on('data', (chunk) => {
@ -293,7 +292,6 @@ describe('utilityProcess module', () => {
const child = utilityProcess.fork(path.join(fixturesPath, 'log.js'), [], {
stdio: 'pipe'
});
await once(child, 'spawn');
expect(child.stdout).to.not.be.null();
let log = '';
child.stdout!.on('data', (chunk) => {
@ -326,7 +324,6 @@ describe('utilityProcess module', () => {
const child = utilityProcess.fork(path.join(fixturesPath, 'log.js'), [], {
stdio: ['ignore', 'pipe', 'pipe']
});
await once(child, 'spawn');
expect(child.stderr).to.not.be.null();
let log = '';
child.stderr!.on('data', (chunk) => {