mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-11 16:14:18 -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);
|
|
}
|
|
}
|