index : btroops | |
Virtual board game-aid for BattleTroops, an infantry combat simulator wargame published by FASA in 1989. |
aboutsummaryrefslogtreecommitdiff |
path: root/jest.config.integ.cjs
diff options
author | Catalin Mititiuc <webdevcat@proton.me> | 2024-04-17 22:26:53 -0700 |
---|---|---|
committer | Catalin Mititiuc <webdevcat@proton.me> | 2024-04-17 22:26:53 -0700 |
commit | 23967fe2f5ae9fb6d6c8a2cbc29845531f7acece (patch) | |
tree | a9bc130e002ed7241552891f70326976b01117fb /jest.config.integ.cjs | |
parent | 24e2bd5821b09d4d7e243fc62ab36f45454a0a03 (diff) |
Integration test running with test server
Diffstat (limited to 'jest.config.integ.cjs')
-rw-r--r-- | jest.config.integ.cjs | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/jest.config.integ.cjs b/jest.config.integ.cjs new file mode 100644 index 0000000..8336242 --- /dev/null +++ b/jest.config.integ.cjs @@ -0,0 +1,22 @@ +console.log("Jest config file read."); + +// const { spawn } = require("child_process"); + +// const ls = spawn('ls', ['-lh', './test']); + +// ls.stdout.on('data', (data) => { console.log(`stdout: ${data}`); }); + +// ls.stderr.on('data', (data) => { +// console.error(`stderr: ${data}`); +// }); + +// ls.on('close', (code) => { +// console.log(`child process exited with code ${code}`); +// }); + +module.exports = { + globalSetup: "./test/setup.cjs", + globalTeardown: "./test/teardown.cjs", + testPathIgnorePatterns: ["/node_modules/"], + testTimeout: 5000 +}; |