Add admin order fulfillment tracking. #7

Merged
jocke merged 7 commits from feature/admin-fulfillment-tracking into master 2026-05-28 12:16:59 +00:00
2 changed files with 5 additions and 1 deletions
Showing only changes of commit afa552e18b - Show all commits

View file

@ -272,7 +272,7 @@ docker compose -f docker-compose.e2e.yml down
- Config: `frontend/playwright.config.ts` - Config: `frontend/playwright.config.ts`
- Tests: `frontend/e2e/*.spec.ts` - Tests: `frontend/e2e/*.spec.ts`
- Serial specs (`deferred-payment-admin`, `admin-fulfillment`): Playwright project `chromium-serial`, `workers: 1` - Serial specs (shared Mailpit / DB state): `deferred-payment-admin`, `admin-fulfillment`, `account-settings`, `password-reset` Playwright project `chromium-serial`, `workers: 1`
### CI (future) ### CI (future)
- `./gradlew check` and `npm run test && npm run lint` must pass before merge. - `./gradlew check` and `npm run test && npm run lint` must pass before merge.

View file

@ -26,6 +26,8 @@ export default defineConfig({
testIgnore: [ testIgnore: [
'**/deferred-payment-admin.spec.ts', '**/deferred-payment-admin.spec.ts',
'**/admin-fulfillment.spec.ts', '**/admin-fulfillment.spec.ts',
'**/account-settings.spec.ts',
'**/password-reset.spec.ts',
], ],
use: { browserName: 'chromium' }, use: { browserName: 'chromium' },
}, },
@ -34,6 +36,8 @@ export default defineConfig({
testMatch: [ testMatch: [
'**/deferred-payment-admin.spec.ts', '**/deferred-payment-admin.spec.ts',
'**/admin-fulfillment.spec.ts', '**/admin-fulfillment.spec.ts',
'**/account-settings.spec.ts',
'**/password-reset.spec.ts',
], ],
fullyParallel: false, fullyParallel: false,
workers: 1, workers: 1,