Files
thrillwiki_laravel/tests/Feature/Livewire/ParksLocationSearchTest.php
pacnpal 97a7682eb7 Add Livewire components for parks, rides, and manufacturers
- Implemented ParksLocationSearch component with loading state and refresh functionality.
- Created ParksMapView component with similar structure and functionality.
- Added RegionalParksListing component for displaying regional parks.
- Developed RidesListingUniversal component for universal listing integration.
- Established ManufacturersListing view with navigation and Livewire integration.
- Added feature tests for various Livewire components including OperatorHierarchyView, OperatorParksListing, OperatorPortfolioCard, OperatorsListing, OperatorsRoleFilter, ParksListing, ParksLocationSearch, ParksMapView, and RegionalParksListing to ensure proper rendering and adherence to patterns.
2025-06-23 21:31:05 -04:00

35 lines
844 B
PHP

<?php
namespace Tests\Feature\Livewire;
use App\Livewire\ParksLocationSearch;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Livewire\Livewire;
use Tests\TestCase;
class ParksLocationSearchTest extends TestCase
{
use RefreshDatabase;
/** @test */
public function component_can_render(): void
{
Livewire::test(ParksLocationSearch::class)
->assertStatus(200)
->assertSee('ParksLocationSearch');
}
/** @test */
public function component_can_mount_successfully(): void
{
Livewire::test(ParksLocationSearch::class)
->assertStatus(200);
}
/** @test */
public function component_follows_thrillwiki_patterns(): void
{
Livewire::test(ParksLocationSearch::class)
->assertViewIs('livewire.parks-location-search');
}
}