From 27a21c4e6119be971d9aff9291c8461c21e323bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Garapich?= Date: Fri, 2 Aug 2024 10:51:52 +0000 Subject: [PATCH] ci: e2e test fixes --- .github/workflows/test.yml | 2 +- playwright.config.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 27bd616a..65106732 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -63,7 +63,7 @@ jobs: QUEUE_CONFIG: '6v6' AUTH_SECRET: ${{ secrets.AUTH_SECRET }} THUMBNAIL_SERVICE_URL: 'https://mapthumbnails.tf2pickup.org' - LOG_RELAY_ADDRESS: 'host.docker.internal' + LOG_RELAY_ADDRESS: '127.0.0.1' LOG_RELAY_PORT: '9871' GAME_SERVER_SECRET: 'xxxxxx' run: pnpm test:e2e diff --git a/playwright.config.ts b/playwright.config.ts index 9257b547..9f580e05 100644 --- a/playwright.config.ts +++ b/playwright.config.ts @@ -19,7 +19,7 @@ export default defineConfig({ /* Opt out of parallel tests on CI. */ workers: process.env.CI ? 1 : '50%', /* Reporter to use. See https://playwright.dev/docs/test-reporters */ - reporter: process.env.CI ? 'github' : 'html', + reporter: 'html', /* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */ use: { /* Base URL to use in actions like `await page.goto('/')`. */