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

12 lines
418 B
PHP

<?php
declare(strict_types=1);
it('defines the rounded 2xl radius token for filament panel themes', function (): void {
$adminTheme = file_get_contents(resource_path('css/filament/admin/theme.css'));
$systemTheme = file_get_contents(resource_path('css/filament/system/theme.css'));
expect($adminTheme)->toContain('--radius-2xl: 1rem;')
->and($systemTheme)->toContain('--radius-2xl: 1rem;');
});