snipe-it/tests/Feature/Assets/Ui/StoreAssetsTest.php
2024-12-16 17:45:10 -08:00

17 lines
312 B
PHP

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