diff options
| -rw-r--r-- | .github/workflows/frontend.yml | 2 | ||||
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | gui/playwright.config.ts | 1 |
3 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/frontend.yml b/.github/workflows/frontend.yml index 2ee35ce407..e5b6181090 100644 --- a/.github/workflows/frontend.yml +++ b/.github/workflows/frontend.yml @@ -62,5 +62,5 @@ jobs: if: failure() with: name: playwright-report - path: playwright-report + path: test/e2e/playwright-report/ retention-days: 5 diff --git a/.gitignore b/.gitignore index 170e4589b4..476aa51608 100644 --- a/.gitignore +++ b/.gitignore @@ -7,6 +7,7 @@ /gui/scripts/out/ /gui/src/main/management_interface/ /gui/test/e2e/screenshots/ +/gui/test/e2e/playwright-report/ /gui/test-results/ /build/ /dist diff --git a/gui/playwright.config.ts b/gui/playwright.config.ts index 025675c831..6c894b6444 100644 --- a/gui/playwright.config.ts +++ b/gui/playwright.config.ts @@ -13,6 +13,7 @@ const config: PlaywrightTestConfig = { screenshot: 'only-on-failure', video: 'retain-on-failure', }, + reporter: [['html', { open: 'never', outputFolder: 'test/e2e/playwright-report' }]], }; export default config; |
