mirror of
https://github.com/snipe/snipe-it.git
synced 2025-02-21 03:15:45 -08:00
17 lines
324 B
PHP
17 lines
324 B
PHP
|
<?php
|
||
|
|
||
|
namespace Tests\Feature\PredefinedKits\Ui;
|
||
|
|
||
|
use App\Models\User;
|
||
|
use Tests\TestCase;
|
||
|
|
||
|
class CreatePredefinedKitTest extends TestCase
|
||
|
{
|
||
|
public function testPageRenders()
|
||
|
{
|
||
|
$this->actingAs(User::factory()->superuser()->create())
|
||
|
->get(route('kits.create'))
|
||
|
->assertOk();
|
||
|
}
|
||
|
}
|