From 9cc57cd0118dfa6a6437ac49c94eaa83e3eb3260 Mon Sep 17 00:00:00 2001 From: rinsuki <428rinsuki+git@gmail.com> Date: Fri, 25 Oct 2019 06:26:45 +0900 Subject: [PATCH] fix coding style --- test/utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)); });