index : btroops | |
Virtual board game-aid for BattleTroops, an infantry combat simulator wargame published by FASA in 1989. |
aboutsummaryrefslogtreecommitdiff |
diff options
author | Catalin Mititiuc <webdevcat@proton.me> | 2024-05-02 11:53:08 -0700 |
---|---|---|
committer | Catalin Mititiuc <webdevcat@proton.me> | 2024-05-02 11:53:08 -0700 |
commit | 0e2ddffc82a8fed48d5edd7be42be1d06a035314 (patch) | |
tree | 6cf5571dd80067f123d6bdacd0bfca7b9ac0c77c /test/integration/setup.cjs | |
parent | 686b05350d474e3545b01783005ba0fd8e4dc545 (diff) |
Change double quotes to single
Diffstat (limited to 'test/integration/setup.cjs')
-rw-r--r-- | test/integration/setup.cjs | 12 |
1 files changed, 6 insertions, 6 deletions
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); } }); |