diff --git a/test/utils.ts b/test/utils.ts index e9c9ca015e..c2c2597401 100644 --- a/test/utils.ts +++ b/test/utils.ts @@ -110,7 +110,7 @@ export function launchServer(callbackSpawnedProcess: (p: childProcess.ChildProce stdio: ['inherit', 'inherit', 'ipc'], env: { NODE_ENV: 'test', PATH: process.env.PATH } }); - callbackSpawnedProcess(p) + callbackSpawnedProcess(p); p.on('message', message => { if (message === 'ok') moreProcess().then(() => done()).catch(e => done(e)); });