Testing create form modal on ManageResource page.

it('can create author', function () {
    livewire(ManageAuthors::class)
        ->callAction(CreateAction::class)
        ->fillForm([
            'name' => 'New Author',
            'email' => 'new@test.com'
        ])
        ->call('create');

    dd(Author::all());
});


Here is my code for testing the form. But nothing seems to be outputting.
Was this page helpful?