13 lines
359 B
PHP
13 lines
359 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use App\Filament\Resources\PolicyVersionResource;
|
|
|
|
it('disables policy-version global search explicitly for the rollout', function (): void {
|
|
$property = new \ReflectionProperty(PolicyVersionResource::class, 'isGloballySearchable');
|
|
$property->setAccessible(true);
|
|
|
|
expect($property->getValue())->toBeFalse();
|
|
});
|