From 534c96996849248467721415952416de399a86bb Mon Sep 17 00:00:00 2001 From: yasserfaraazkhan Date: Wed, 12 Feb 2025 13:03:48 +0530 Subject: [PATCH] some clean up --- detox/e2e/config.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/detox/e2e/config.js b/detox/e2e/config.js index 574fb3a9a3b..becf2636237 100644 --- a/detox/e2e/config.js +++ b/detox/e2e/config.js @@ -3,12 +3,13 @@ const platform = process.env.IOS === 'true' ? 'ios' : 'android'; const shard = process.env.CI_NODE_INDEX ? process.env.CI_NODE_INDEX : ''; +const testTimeout = process.env.CI ? 120000 * 3 : 120000; module.exports = { setupFilesAfterEnv: ['./test/setup.ts'], maxWorkers: 1, testSequencer: './custom_sequencer.js', - testTimeout: 120000, + testTimeout: testTimeout, rootDir: '.', testMatch: ['/test/**/*.e2e.ts'], transform: {