toBeInstanceOf(BadgeSpec::class); expect($spec->label)->toBe('Unknown'); expect($spec->color)->toBe('gray'); }); it('defines the allowed Filament badge colors', function (): void { expect(BadgeSpec::allowedColors())->toBe([ 'gray', 'info', 'success', 'warning', 'danger', 'primary', ]); }); it('carries taxonomy metadata on first-slice badge specs', function (): void { $spec = BadgeCatalog::spec(BadgeDomain::BaselineSnapshotFidelity, 'unsupported'); expect($spec->semanticAxis)->toBe(OperatorSemanticAxis::ProductSupportMaturity) ->and($spec->classification)->toBe(OperatorStateClassification::Diagnostic) ->and($spec->diagnosticLabel)->toBe('Fallback renderer'); });