Testing create form modal on ManageResource page.
Here is my code for testing the form. But nothing seems to be outputting.
it('can create author', function () {
livewire(ManageAuthors::class)
->callAction(CreateAction::class)
->fillForm([
'name' => 'New Author',
'email' => 'new@test.com'
])
->call('create');
dd(Author::all());
});