test(ui): update E2E test commands to include scans project

- Modified the E2E test commands in package.json to include the 'scans' project, ensuring comprehensive testing coverage for the scans functionality.
- This change aligns the test commands with recent enhancements made to the ScansPage and overall E2E testing strategy.
This commit is contained in:
StylusFrost
2025-11-03 19:16:26 +01:00
parent 722a69e7a8
commit 9b899b9f74
+4 -4
View File
@@ -15,10 +15,10 @@
"format:check": "./node_modules/.bin/prettier --check ./app",
"format:write": "./node_modules/.bin/prettier --config .prettierrc.json --write ./app",
"prepare": "husky",
"test:e2e": "playwright test --project=chromium --project=sign-up --project=providers --project=invitations",
"test:e2e:ui": "playwright test --project=chromium --project=sign-up --project=providers --project=invitations --ui",
"test:e2e:debug": "playwright test --project=chromium --project=sign-up --project=providers --project=invitations --debug",
"test:e2e:headed": "playwright test --project=chromium --project=sign-up --project=providers --project=invitations --headed",
"test:e2e": "playwright test --project=chromium --project=sign-up --project=providers --project=invitations --project=scans",
"test:e2e:ui": "playwright test --project=chromium --project=sign-up --project=providers --project=invitations --project=scans --ui",
"test:e2e:debug": "playwright test --project=chromium --project=sign-up --project=providers --project=invitations --project=scans --debug",
"test:e2e:headed": "playwright test --project=chromium --project=sign-up --project=providers --project=invitations --project=scans --headed",
"test:e2e:report": "playwright show-report",
"test:e2e:install": "playwright install"
},