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

17 lines
336 B
PHP

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