mirror of
https://github.com/snipe/snipe-it.git
synced 2025-01-13 15:01:02 -08:00
16 lines
302 B
PHP
16 lines
302 B
PHP
|
<?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);
|
||
|
}
|
||
|
}
|