snipe-it/tests/Feature/StatusLabels/Ui/CreateStatusLabelTest.php

17 lines
328 B
PHP
Raw Normal View History

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