snipe-it/tests/Feature/Livewire/CategoryEditFormTest.php

16 lines
302 B
PHP
Raw Normal View History

2023-08-02 12:58:07 -07:00
<?php
namespace Tests\Feature\Livewire;
use App\Http\Livewire\CategoryEditForm;
use Livewire\Livewire;
use Tests\TestCase;
class CategoryEditFormTest extends TestCase
{
public function testTheComponentCanRender()
{
Livewire::test(CategoryEditForm::class)->assertStatus(200);
}
}