diff options
| author | Hank <hank@mullvad.net> | 2022-09-16 10:38:36 +0200 |
|---|---|---|
| committer | Hank <hank@mullvad.net> | 2022-09-20 11:34:23 +0200 |
| commit | c91f3e4c3474df282276da7d4d51eb8c771ab8be (patch) | |
| tree | caff28ed892cf57c0d7c61c378ffad06812aea36 | |
| parent | 10e091c7423e02726e19e1dae6fe3f8ee5fa0912 (diff) | |
| download | mullvadvpn-c91f3e4c3474df282276da7d4d51eb8c771ab8be.tar.xz mullvadvpn-c91f3e4c3474df282276da7d4d51eb8c771ab8be.zip | |
Revert html reporter and remove github action artifact uploads
| -rw-r--r-- | .github/workflows/frontend.yml | 8 | ||||
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | gui/playwright.config.ts | 1 |
3 files changed, 0 insertions, 10 deletions
diff --git a/.github/workflows/frontend.yml b/.github/workflows/frontend.yml index b8f62db4ba..203ac0f724 100644 --- a/.github/workflows/frontend.yml +++ b/.github/workflows/frontend.yml @@ -56,11 +56,3 @@ jobs: - name: Run Playwright tests working-directory: gui run: npm run e2e:no-build - - - name: Upload failed screenshots - uses: actions/upload-artifact@v3 - if: failure() - with: - name: playwright-report - path: gui/test/e2e/playwright-report/ - retention-days: 5 diff --git a/.gitignore b/.gitignore index 476aa51608..170e4589b4 100644 --- a/.gitignore +++ b/.gitignore @@ -7,7 +7,6 @@ /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 6c894b6444..025675c831 100644 --- a/gui/playwright.config.ts +++ b/gui/playwright.config.ts @@ -13,7 +13,6 @@ const config: PlaywrightTestConfig = { screenshot: 'only-on-failure', video: 'retain-on-failure', }, - reporter: [['html', { open: 'never', outputFolder: 'test/e2e/playwright-report' }]], }; export default config; |
