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