12 lines
418 B
PHP
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;');
|
|
});
|