Skip to content

Commit

Permalink
Fix workflow and reporter
Browse files Browse the repository at this point in the history
  • Loading branch information
KuznetsovNikita committed Nov 18, 2024
1 parent cbabb36 commit 6b8e75e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/playwright.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ jobs:
uses: borales/actions-yarn@v5
with:
dir: 'tests/playwright'
cmd: playwright install
cmd: playwright

- name: Run install
- name: Run tests
uses: borales/actions-yarn@v5
env:
BASE_APP_URL: https://wallet.tonkeeper.com
Expand Down
2 changes: 1 addition & 1 deletion tests/playwright/playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export default defineConfig({
/* Opt out of parallel tests on CI. */
workers: process.env.CI ? 1 : undefined,
/* Reporter to use. See https://playwright.dev/docs/test-reporters */
reporter: 'html',
reporter: process.env.CI ? 'github' : [['html'], ['list']],
/* 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 6b8e75e

Please sign in to comment.