coolify/tests/Feature/ButtonTextCapitalizationTest.php
Andras Bacsai 7f25af3785 feat(ui): capitalize button labels and speed depth transitions
Standard buttons now capitalize each word in their labels. Movement and
depth-shadow changes use an 80ms duration while color transitions stay
at 120ms.
2026-09-08 10:14:03 +02:00

11 lines
358 B
PHP

<?php
test('standard buttons capitalize each word in their labels', function () {
$utilities = file_get_contents(resource_path('css/utilities.css'));
preg_match('/@utility button \{(?<styles>[\s\S]*?)\n\}/', $utilities, $matches);
expect($matches['styles'] ?? '')
->toContain('capitalize')
->not->toContain('normal-case');
});