From f3352a1f4048913e39de9d663bc6c2152fc02b36 Mon Sep 17 00:00:00 2001 From: roble Date: Tue, 10 Mar 2026 11:36:42 +0000 Subject: [PATCH 1/2] fix: update PHPUnit test filter syntax in documentation and Taskfile --- CLAUDE.md | 2 +- Taskfile.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CLAUDE.md b/CLAUDE.md index 444f342..76e7eb8 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -63,7 +63,7 @@ Other modules can add items to the `settings` group from their own `routes/navig ## Testing ```bash -php artisan test --testsuite=Modules --filter=Settings # PHPUnit +php artisan test --testsuite=Modules --filter='Modules.Settings' # PHPUnit npx playwright test --project="@Settings*" # E2E ``` diff --git a/Taskfile.yml b/Taskfile.yml index d45de17..714d8da 100644 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -5,7 +5,7 @@ tasks: # ── Testing ─────────────────────────────────────────────────── test:php: desc: Run PHPUnit tests for Settings module - cmd: php artisan test --testsuite=Modules --filter=Settings + cmd: php artisan test --testsuite=Modules --filter='Modules.Settings' test:e2e: desc: Run E2E tests for Settings module From 285d6bd033af6ee35bc0c6c1da9bc67758521b39 Mon Sep 17 00:00:00 2001 From: roble Date: Tue, 10 Mar 2026 20:33:50 +0000 Subject: [PATCH 2/2] fix: update PHPUnit test filter syntax in documentation and Taskfile --- CLAUDE.md | 2 +- Taskfile.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CLAUDE.md b/CLAUDE.md index 76e7eb8..6736216 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -63,7 +63,7 @@ Other modules can add items to the `settings` group from their own `routes/navig ## Testing ```bash -php artisan test --testsuite=Modules --filter='Modules.Settings' # PHPUnit +php artisan test --testsuite=Modules --filter='^Modules\\Settings\\Tests' # PHPUnit npx playwright test --project="@Settings*" # E2E ``` diff --git a/Taskfile.yml b/Taskfile.yml index 714d8da..15a64f4 100644 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -5,7 +5,7 @@ tasks: # ── Testing ─────────────────────────────────────────────────── test:php: desc: Run PHPUnit tests for Settings module - cmd: php artisan test --testsuite=Modules --filter='Modules.Settings' + cmd: php artisan test --testsuite=Modules --filter='^Modules\\Settings\\Tests' test:e2e: desc: Run E2E tests for Settings module