TenantAtlas/apps/platform/tests/Feature/TenantConfiguration/Spec425EntraCertifiedNoTenantIdTest.php
Ahmed Darrazi 39d0353e03
Some checks failed
PR Fast Feedback / fast-feedback (pull_request) Failing after 1m22s
feat: complete spec 425 enta certified compare pack
2026-07-02 00:55:04 +02:00

15 lines
572 B
PHP

<?php
declare(strict_types=1);
it('Spec425 runtime changes do not introduce tenant id as Coverage v2 ownership truth', function (): void {
foreach ([
app_path('Services/TenantConfiguration/EntraCertifiedComparePackEvaluator.php'),
app_path('Services/TenantConfiguration/EntraCertifiedComparePackResult.php'),
app_path('Services/TenantConfiguration/SupportedScopeResolver.php'),
app_path('Services/TenantConfiguration/ClaimGuard.php'),
] as $path) {
expect(file_get_contents($path))->not->toContain('tenant_id');
}
});