From 9b899b9f745c0b300fa6609ac40c8b3584087b2e Mon Sep 17 00:00:00 2001 From: StylusFrost Date: Mon, 3 Nov 2025 19:16:26 +0100 Subject: [PATCH] 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. --- ui/package.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ui/package.json b/ui/package.json index 39f6fd37b4..343252dcba 100644 --- a/ui/package.json +++ b/ui/package.json @@ -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" },