From c0244c64452f017b42c3d0da0bb4895bffe87bbc Mon Sep 17 00:00:00 2001 From: Nicola Corti Date: Thu, 7 Sep 2023 08:31:25 -0700 Subject: [PATCH] Add no_output_timeout: 30m to E2E jobs (#39322) Summary: Just increases the timeout as the E2E test runs ## Changelog: [INTERNAL] - Add no_output_timeout: 30m to E2E jobs Pull Request resolved: https://github.com/facebook/react-native/pull/39322 Test Plan: CI should be green Reviewed By: cipolleschi Differential Revision: D49056677 Pulled By: cortinico fbshipit-source-id: c9b9af4b0fe2331a217438e303316a1f379c9e8d --- .circleci/configurations/jobs.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.circleci/configurations/jobs.yml b/.circleci/configurations/jobs.yml index 6c2514d704d..c3a2aa0ca34 100644 --- a/.circleci/configurations/jobs.yml +++ b/.circleci/configurations/jobs.yml @@ -175,6 +175,7 @@ jobs: command: scripts/circleci/check_appium_server_status.sh - run: name: Run E2E tests + no_output_timeout: 30m command: | cd packages/rn-tester-e2e (yarn test-e2e ios 2>&1 | tee /tmp/test_log) || true @@ -238,6 +239,7 @@ jobs: fi - run: name: Run E2E tests + no_output_timeout: 30m command: | cd packages/rn-tester-e2e (yarn test-e2e android 2>&1 | tee /tmp/test_log) || true