snipe-it/tests/Feature/AssetMaintenances/Ui/AssetMaintenanceIndexTest.php

17 lines
336 B
PHP
Raw Normal View History

<?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();
}
}