Files
persegi/tests/TestCase.php
T

19 lines
477 B
PHP
Raw Normal View History

<?php
namespace Tests;
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
use Spatie\Permission\Models\Role;
abstract class TestCase extends BaseTestCase
{
protected function setUp(): void
{
parent::setUp();
// Seed roles yang dibutuhkan observer
foreach (['anggota', 'ketua', 'bendahara', 'pengurus', 'auditor', 'super_admin'] as $role) {
Role::firstOrCreate(['name' => $role, 'guard_name' => 'web']);
}
}
}