- Create highly responsive bento layouts (grid, card, pages) - Integrate Livewire with Alpine and complex GSAP animations. - Implement DevTool Dark theme values across Blade components. - Enhance interactive elements, micro-interactions, API snippets logic natively. - Apply semantic HTML and properly linked responsive Nav\/Footers sections structure
16 lines
334 B
PHP
16 lines
334 B
PHP
<?php
|
|
|
|
use App\Livewire\LandingPage;
|
|
use Livewire\Livewire;
|
|
|
|
it('loads the landing page component', function () {
|
|
$this->get('/')
|
|
->assertOk()
|
|
->assertSeeLivewire(LandingPage::class);
|
|
});
|
|
|
|
it('can render the landing page view', function () {
|
|
Livewire::test(LandingPage::class)
|
|
->assertStatus(200);
|
|
});
|