1
0
Fork 0
mirror of https://github.com/BlueWallet/BlueWallet.git synced 2025-03-16 20:21:35 +01:00
BlueWallet/tests/e2e/jest.config.js
Marcos Rodriguez Vélez c95350b68f
OPS: Update RN ()
2023-03-04 17:51:11 +00:00

14 lines
401 B
JavaScript

module.exports = {
maxWorkers: 1,
testTimeout: 333_000,
verbose: true,
reporters: ['detox/runners/jest/reporter'],
globalSetup: 'detox/runners/jest/globalSetup',
globalTeardown: 'detox/runners/jest/globalTeardown',
testEnvironment: 'detox/runners/jest/testEnvironment',
rootDir: '..',
testMatch: ['<rootDir>/e2e/**/*.spec.js'],
transform: {
'\\.[jt]sx?$': ['ts-jest'],
},
};