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-06-12 10:50:06 -0700 |
---|---|---|
committer | Catalin Mititiuc <webdevcat@proton.me> | 2024-06-12 10:50:06 -0700 |
commit | 16fc0bf7938071b400364d705f9ac859068be5f3 (patch) | |
tree | 94c16f2c477dbf1d6e2b4e9e11403f1f5f01fc68 /test/integration/setup.cjs | |
parent | 333931c82cd3c9aee6d09319a273c9735a0fdca8 (diff) |
WIP: modify dev server to use as test server, also
Diffstat (limited to 'test/integration/setup.cjs')
-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 cc68a59..451e82d 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 (globalConfig, projectConfig) { - const child = spawn('node', ['server.cjs']); + const child = spawn('node', ['esbuild-server.mjs']); child.stdout.on('data', (data) => { console.log(`${data}`); |