-
tests/Feature/Http/HomeTest.php
Open in GitHubuse Inertia\Testing\AssertableInertia; it('returns a successful response', function (): void { // Act $response = $this->get('/'); // Assert $response->assertStatus(200); $response->assertInertia(function (AssertableInertia $page): void { $page->component('landing/welcome') ->has('trendingKits') ->has('recentKits'); }); });