Files
2026-03-16 17:40:57 -07:00

18 lines
388 B
PHP

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