Skip to content

Commit

Permalink
chore: change playwright reporter [YTFRONT-4663]
Browse files Browse the repository at this point in the history
  • Loading branch information
KostyaAvtushko committed Feb 11, 2025
1 parent 24dfb3f commit 19cf2fc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci-e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ jobs:
if: failure()
with:
name: local_test-results
path: packages/ui/tests/test-results/
path: packages/ui/tests/playwright-report/
retention-days: 7

e2e-local-as-remote:
Expand Down Expand Up @@ -144,7 +144,7 @@ jobs:
if: failure()
with:
name: remote_test-results
path: packages/ui/tests/test-results/
path: packages/ui/tests/playwright-report/
retention-days: 7

e2e-screenshots:
Expand Down Expand Up @@ -192,7 +192,7 @@ jobs:
if: failure()
with:
name: screenshots_test-results
path: packages/ui/tests/test-results/
path: packages/ui/tests/playwright-report/
retention-days: 7

stop-vm:
Expand Down
2 changes: 1 addition & 1 deletion packages/ui/tests/playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export default defineConfig({
/* Opt out of parallel tests on CI. */
workers: process.env.CI ? 1 : 1,
/* Reporter to use. See https://playwright.dev/docs/test-reporters */
reporter: process.env.CI ? 'github' : 'list',
reporter: [['html', { open: 'never' }]],
/* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */
use: {
headless,
Expand Down

0 comments on commit 19cf2fc

Please sign in to comment.