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

17 lines
328 B
PHP

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