create(); $user = User::factory()->create(); $run = BulkOperationRun::factory()->create([ 'tenant_id' => $tenant->id, 'user_id' => $user->id, 'status' => 'running', ]); app(BulkOperationService::class)->abort($run, 'threshold exceeded'); expect($run->refresh()->status)->toBe('aborted'); });