index : btroops | |
Virtual board game-aid for BattleTroops, an infantry combat simulator wargame published by FASA in 1989. |
aboutsummaryrefslogtreecommitdiff |
diff options
Diffstat (limited to 'test/setup.cjs')
-rw-r--r-- | test/setup.cjs | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/test/setup.cjs b/test/setup.cjs deleted file mode 100644 index 01551a7..0000000 --- a/test/setup.cjs +++ /dev/null @@ -1,28 +0,0 @@ -console.log("\nSpawning server process..."); -const { spawn } = require("child_process"); - -module.exports = async function () { - const child = spawn("node", ["dev-server.cjs"]); - - child.stdout.on('data', (data) => { - console.log(`${data}`); - }); - - // child.stderr.on('data', (data) => { - // console.error(`stderr: ${data}`); - // }); - - // child.on('close', (code) => { - // console.log(`child process exited with code ${code}`); - // }); - - globalThis.__INTEG_TEST_SERVER_PID__ = child.pid; - - child.stderr.on("data", (data) => { - const str = data.toString(); - console.log("[server]", str); - if (str.includes("localhost:3005")) { - setTimeout(resolve, 200); - } - }); -}; |