Skip to content

Commit

Permalink
ci: e2e test fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
garrappachc committed Aug 2, 2024
1 parent 64b0163 commit 27a21c4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export default defineConfig<AuthUsersOptions>({
/* 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('/')`. */
Expand Down

0 comments on commit 27a21c4

Please sign in to comment.