3
0
mirror of https://github.com/snipe/snipe-it.git synced 2026-04-07 08:18:30 +00:00
Files
snipe-it/tests/Feature/PredefinedKits/Ui/IndexPredefinedKitsTest.php
2026-03-16 17:40:57 -07:00

17 lines
325 B
PHP

<?php
namespace Tests\Feature\PredefinedKits\Ui;
use App\Models\User;
use Tests\TestCase;
class IndexPredefinedKitsTest extends TestCase
{
public function test_page_renders()
{
$this->actingAs(User::factory()->superuser()->create())
->get(route('kits.index'))
->assertOk();
}
}