mirror of
https://github.com/pacnpal/thrillwiki_laravel.git
synced 2025-12-20 03:51:10 -05:00
- 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.
35 lines
844 B
PHP
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');
|
|
}
|
|
} |