From 1f576641dc1b320672f062894701212a536c7ce3 Mon Sep 17 00:00:00 2001 From: Mark Stacey Date: Thu, 15 Jun 2023 14:48:15 -0230 Subject: [PATCH] Enable e2e debug flag in CI (#19588) E2E tests will now run in debug mode on CI, printing out each step that the driver takes during a test. This should make debugging intermittent failures much easier. --- .circleci/config.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index d053b456a..823da67ad 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -655,7 +655,7 @@ jobs: command: | if .circleci/scripts/test-run-e2e.sh then - yarn test:e2e:chrome --retries 2 + yarn test:e2e:chrome --retries 2 --debug fi no_output_timeout: 20m - run: @@ -692,7 +692,7 @@ jobs: command: | if .circleci/scripts/test-run-e2e.sh then - yarn test:e2e:chrome --retries 2 --mv3 || echo "Temporarily suppressing MV3 e2e test failures" + yarn test:e2e:chrome --retries 2 --debug --mv3 || echo "Temporarily suppressing MV3 e2e test failures" fi no_output_timeout: 20m - store_artifacts: @@ -720,7 +720,7 @@ jobs: command: | if .circleci/scripts/test-run-e2e.sh then - yarn test:e2e:firefox:snaps --retries 2 + yarn test:e2e:firefox:snaps --retries 2 --debug fi no_output_timeout: 20m - run: @@ -757,7 +757,7 @@ jobs: command: | if .circleci/scripts/test-run-e2e.sh then - yarn test:e2e:chrome:snaps --retries 2 + yarn test:e2e:chrome:snaps --retries 2 --debug fi no_output_timeout: 20m - run: @@ -794,7 +794,7 @@ jobs: command: | if .circleci/scripts/test-run-e2e.sh then - yarn test:e2e:firefox --retries 2 + yarn test:e2e:firefox --retries 2 --debug fi no_output_timeout: 20m - run: