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-06-02 14:46:27 -0700 |
---|---|---|
committer | Catalin Mititiuc <webdevcat@proton.me> | 2024-06-02 14:46:27 -0700 |
commit | d826a01ff91301d88762a59881ac53053926b5be (patch) | |
tree | ebc23acbe51b271942df85f3de8ae6dadb1513f8 /jest.config.integ.cjs | |
parent | 163e3a9de59f5d6a8df38fa32a1e7dc4db1ad024 (diff) |
Add integration test-helpers and refactor integration tests
Diffstat (limited to 'jest.config.integ.cjs')
-rw-r--r-- | jest.config.integ.cjs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/jest.config.integ.cjs b/jest.config.integ.cjs index 28562ea..083cbd7 100644 --- a/jest.config.integ.cjs +++ b/jest.config.integ.cjs @@ -5,8 +5,9 @@ module.exports = { globalTeardown: './test/integration/teardown.cjs', setupFiles: ['./test/integration/helpers.cjs'], testPathIgnorePatterns: ['/node_modules/', 'test/unit'], - testTimeout: 5000, + verbose: true, + randomize: true, globals: { testServerUrl: 'http://localhost:3005/' - } + }, }; |