feat: add UI test command and clean up integration test

- Introduced a new npm script "test:ui" for running UI tests in the apps/ui workspace.
- Removed unnecessary login screen handling from the worktree integration test to streamline the test flow.
This commit is contained in:
webdevcody
2026-01-08 00:07:23 -05:00
parent 69434fe356
commit 959467de90
2 changed files with 1 additions and 1 deletions

View File

@@ -42,6 +42,7 @@
"lint": "npm run lint --workspace=apps/ui",
"test": "npm run test --workspace=apps/ui",
"test:headed": "npm run test:headed --workspace=apps/ui",
"test:ui": "npm run test --workspace=apps/ui -- --ui",
"test:packages": "vitest run --project='!server'",
"test:server": "vitest run --project=server",
"test:server:coverage": "vitest run --project=server --coverage",