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-05-28 17:46:32 -0700 |
---|---|---|
committer | Catalin Mititiuc <webdevcat@proton.me> | 2024-05-28 18:44:28 -0700 |
commit | 7e5aedeb0a1ffa727005c98d80044429bf20ff45 (patch) | |
tree | e50e71d53cf77f6cb850d3fab01d24e91c9551ae /jest.config.integ.cjs | |
parent | 2df718998a89cb622bb9a76655abdeafc33d9aa5 (diff) |
Move takeScreenshot() function into a test helper file
Diffstat (limited to 'jest.config.integ.cjs')
-rw-r--r-- | jest.config.integ.cjs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/jest.config.integ.cjs b/jest.config.integ.cjs index 7a8028a..7e8af3c 100644 --- a/jest.config.integ.cjs +++ b/jest.config.integ.cjs @@ -3,6 +3,7 @@ console.log('Jest config file read.'); module.exports = { globalSetup: './test/integration/setup.cjs', globalTeardown: './test/integration/teardown.cjs', + setupFiles: ['./test/integration/helpers.cjs'], testPathIgnorePatterns: ['/node_modules/', 'test/unit'], testTimeout: 5000, }; |