ComponentNotFoundException: Unable to find component (PHPUnit)
I wanted to start writing tests for filling out my forms using PHPUnit (no Pest). But I keep running into the same issue.
See here my testing code:
I always get this error message:
Livewire\Exceptions\ComponentNotFoundException: Unable to find component: [App\Filament\Resources\MusicianResource]
I tried looking up the filament testing page and the Livewire testing page.Solution:Jump to solution
Thanks. The issue then is, that I was trying to test the whole resource, but one must always test the individual pages π
2 Replies
Pages are livewire components, as ListPage, CreatePage, etc..
Solution
Thanks. The issue then is, that I was trying to test the whole resource, but one must always test the individual pages π