Web Dev Solutions

Catalin Mititiuc

From 0e2ddffc82a8fed48d5edd7be42be1d06a035314 Mon Sep 17 00:00:00 2001 From: Catalin Mititiuc Date: Thu, 2 May 2024 11:53:08 -0700 Subject: Change double quotes to single --- test/integration/setup.cjs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'test/integration/setup.cjs') diff --git a/test/integration/setup.cjs b/test/integration/setup.cjs index a03d7de..2ea9e63 100644 --- a/test/integration/setup.cjs +++ b/test/integration/setup.cjs @@ -1,8 +1,8 @@ -console.log("\nSpawning server process..."); -const { spawn } = require("child_process"); +console.log('\nSpawning server process...'); +const { spawn } = require('child_process'); module.exports = async function () { - const child = spawn("node", ["server.cjs"]); + const child = spawn('node', ['server.cjs']); child.stdout.on('data', (data) => { console.log(`${data}`); @@ -10,10 +10,10 @@ module.exports = async function () { globalThis.__INTEG_TEST_SERVER_PID__ = child.pid; - child.stderr.on("data", (data) => { + child.stderr.on('data', (data) => { const str = data.toString(); - console.log("[server]", str); - if (str.includes("localhost:3005")) { + console.log('[server]', str); + if (str.includes('localhost:3005')) { setTimeout(resolve, 200); } }); -- cgit v1.2.3