Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,7 @@ docs/node_modules/
.phpunit.result.cache
coverage/
phpmetrics/

# Playwright output (paths align with the shared quality.yml artifact uploads)
/test-results/
/playwright-report/
11 changes: 7 additions & 4 deletions playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,19 @@ export default defineConfig({
retries: 1,
workers: 1,
reporter: [
['html', { open: 'never', outputFolder: 'tests/e2e/playwright-report' }],
['junit', { outputFile: 'tests/e2e/test-results/results.xml' }],
// Output paths match the shared quality.yml workflow's artifact-upload
// paths (server/apps/<app>/playwright-report and .../test-results) so
// the HTML report + failure screenshots/traces actually get uploaded.
['html', { open: 'never', outputFolder: 'playwright-report' }],
['junit', { outputFile: 'test-results/results.xml' }],
],
outputDir: 'tests/e2e/test-results',
outputDir: 'test-results',
globalSetup: './tests/e2e/global-setup.ts',

use: {
baseURL: process.env.NEXTCLOUD_URL || 'http://localhost:8080',
storageState: STORAGE_STATE,
trace: 'on-first-retry',
trace: 'retain-on-failure',
screenshot: 'only-on-failure',
},

Expand Down
205 changes: 0 additions & 205 deletions test-results/comprehensive-results.md

This file was deleted.

Binary file removed test-results/screenshots/admin-settings.png
Binary file not shown.
Binary file removed test-results/screenshots/case-types.png
Binary file not shown.
Binary file removed test-results/screenshots/cases.png
Binary file not shown.
Binary file removed test-results/screenshots/dashboard.png
Binary file not shown.
Binary file removed test-results/screenshots/login-complete.png
Binary file not shown.
Binary file removed test-results/screenshots/my-work.png
Binary file not shown.
Binary file removed test-results/screenshots/settings.png
Binary file not shown.
Binary file removed test-results/screenshots/tasks.png
Binary file not shown.
Loading