Standard buttons now capitalize each word in their labels. Movement and depth-shadow changes use an 80ms duration while color transitions stay at 120ms.
11 lines
358 B
PHP
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');
|
|
});
|