testing-nova icon indicating copy to clipboard operation
testing-nova copied to clipboard

A test suite demonstrating TDD with Nova

Results 2 testing-nova issues
Sort by recently updated
recently updated
newest added

Hi. Thanks for this repository. I'm just wondering, is it the expected behavior that running a dusk test drops all tables?

how can I test a delete route? I keep getting 200 responses. ```php beforeEach(function () { Post::factory(2)->create(); $this->superAdmin = User::factory()->asSuperAdmin()->create(); $this->user = User::factory()->create(); $this->post = Post::all()->first(); }); // using spatie...