What Changed Removed per-file uses(TestCase::class ...) bindings in Unit tests to avoid Pest v4 “folder already uses the test case” discovery failure (kept RefreshDatabase where needed). Updated the backup scheduling job test to pass the newly required BulkOperationService when manually calling RunBackupScheduleJob::handle(). Where Unit (bulk cleanup across 56 files) RunBackupScheduleJobTest.php Verification ./vendor/bin/sail test → 443 passed, 5 skipped Co-authored-by: Ahmed Darrazi <ahmeddarrazi@adsmac.local> Reviewed-on: #45
27 lines
836 B
PHP
27 lines
836 B
PHP
<?php
|
|
|
|
use App\Filament\Resources\PolicyResource;
|
|
use App\Models\Policy;
|
|
use App\Models\Tenant;
|
|
use App\Models\User;
|
|
use Filament\Facades\Filament;
|
|
use Illuminate\Foundation\Testing\RefreshDatabase;
|
|
use Livewire\Livewire;
|
|
|
|
uses(RefreshDatabase::class);
|
|
test('policies bulk actions are available for authenticated users', function () {
|
|
$tenant = Tenant::factory()->create();
|
|
$user = User::factory()->create();
|
|
$user->tenants()->syncWithoutDetaching([
|
|
$tenant->getKey() => ['role' => 'owner'],
|
|
]);
|
|
|
|
Filament::setTenant($tenant, true);
|
|
$policies = Policy::factory()->count(2)->create(['tenant_id' => $tenant->id]);
|
|
|
|
Livewire::actingAs($user)
|
|
->test(PolicyResource\Pages\ListPolicies::class)
|
|
->callTableBulkAction('bulk_sync', $policies)
|
|
->assertHasNoTableBulkActionErrors();
|
|
});
|