mirror of
https://github.com/snipe/snipe-it.git
synced 2025-02-20 19:05:55 -08:00
17 lines
319 B
PHP
17 lines
319 B
PHP
<?php
|
|
|
|
namespace Tests\Feature\Suppliers\Ui;
|
|
|
|
use App\Models\User;
|
|
use Tests\TestCase;
|
|
|
|
class CreateSupplierTest extends TestCase
|
|
{
|
|
public function testPageRenders()
|
|
{
|
|
$this->actingAs(User::factory()->superuser()->create())
|
|
->get(route('suppliers.create'))
|
|
->assertOk();
|
|
}
|
|
}
|