TenantAtlas/apps/platform/tests/Feature/Guards/Spec120NoGraphContractSecretMetadataTest.php
2026-04-08 09:33:16 +02:00

13 lines
417 B
PHP

<?php
declare(strict_types=1);
it('does not require graph contract secret metadata for spec 120', function (): void {
$contents = file_get_contents(base_path('config/graph_contracts.php'));
expect($contents)->not->toBeFalse();
expect($contents)->not->toContain('secret_metadata');
expect($contents)->not->toContain('protected_fields');
expect($contents)->not->toContain('redaction_rules');
});