missing-livewire-assertions
missing-livewire-assertions copied to clipboard
Adding the missing Livewire assertions to your Laravel project
Results
2
missing-livewire-assertions issues
Sort by
recently updated
recently updated
newest added
I have implemented this in many of my recent tests, however I found that when assertingPropertywired against a property with wire:model.boolean this was not recognised. Checking the src code here...
When testing against a component which is in a subdirectory of the main Livewire namespace, `assertContainsLivewireComponent` fails ``` namespace App\Http\Livewire\Components; use Livewire\Component; class MyComponent extends Component { //... } ```...