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/integration')
-rw-r--r-- | test/integration/setup.cjs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/integration/setup.cjs b/test/integration/setup.cjs index c476077..a03d7de 100644 --- a/test/integration/setup.cjs +++ b/test/integration/setup.cjs @@ -2,7 +2,7 @@ console.log("\nSpawning server process..."); const { spawn } = require("child_process"); module.exports = async function () { - const child = spawn("node", ["dev-server.cjs", "--test"]); + const child = spawn("node", ["server.cjs"]); child.stdout.on('data', (data) => { console.log(`${data}`); |