diff options
Diffstat (limited to '__e2e__/jest.config.js')
-rw-r--r-- | __e2e__/jest.config.js | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/__e2e__/jest.config.js b/__e2e__/jest.config.js new file mode 100644 index 000000000..80c2ad5b3 --- /dev/null +++ b/__e2e__/jest.config.js @@ -0,0 +1,12 @@ +/** @type {import('@jest/types').Config.InitialOptions} */ +module.exports = { + rootDir: '..', + testMatch: ['<rootDir>/__e2e__/**/*.test.ts'], + testTimeout: 120000, + maxWorkers: 1, + globalSetup: 'detox/runners/jest/globalSetup', + globalTeardown: 'detox/runners/jest/globalTeardown', + reporters: ['detox/runners/jest/reporter'], + testEnvironment: 'detox/runners/jest/testEnvironment', + verbose: true, +} |