From 02dbdc5aa6ebb75ea2bf6f01f2395d56943b2cc9 Mon Sep 17 00:00:00 2001 From: Paul Gschwendtner Date: Wed, 25 Jun 2025 10:33:01 +0000 Subject: [PATCH] ci: enable puppeteer debug logging in `main` test runs This might be useful for figuring out why the Firefox tests often seem to time out. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7b546697ce2a..26a8121a2947 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -116,7 +116,7 @@ jobs: - name: Install node modules run: pnpm install --frozen-lockfile - name: Run tests - run: bazel test --build_tag_filters=-e2e --test_tag_filters=-e2e --build_tests_only -- src/... + run: bazel test --build_tag_filters=-e2e --test_tag_filters=-e2e --build_tests_only --test_env="DEBUG=puppeteer:*" -- src/... build: runs-on: ubuntu-latest-16core