3
0
mirror of https://github.com/snipe/snipe-it.git synced 2026-02-05 12:15:43 +00:00
Files
snipe-it/tests/Feature/Livewire/ImporterTest.php
2024-07-15 15:49:18 -07:00

26 lines
549 B
PHP

<?php
namespace Tests\Feature\Livewire;
use App\Livewire\Importer;
use App\Models\User;
use Livewire\Livewire;
use Tests\TestCase;
class ImporterTest extends TestCase
{
public function testRendersSuccessfully()
{
Livewire::actingAs(User::factory()->canImport()->create())
->test(Importer::class)
->assertStatus(200);
}
public function testRequiresPermission()
{
Livewire::actingAs(User::factory()->create())
->test(Importer::class)
->assertStatus(403);
}
}