3
0
mirror of https://github.com/snipe/snipe-it.git synced 2026-08-18 11:15:42 +00:00
Files
snipe-it/tests/Feature/Companies/Ui/CompanyIndexTest.php
2026-03-16 17:40:57 -07:00

17 lines
318 B
PHP

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