cms-laravel/app/Livewire/LoginTest.php

17 lines
333 B
PHP

<?php
namespace Tests\Feature\Livewire;
use Livewire\Livewire;
use Tests\TestCase;
use App\Livewire\Login;
class LoginTest extends TestCase
{
/** @test */
public function it_renders_without_crashing()
{
Livewire::test(Login::class)
->assertSee('Login'); // Check if "Login" text is rendered
}
}