mirror of
https://github.com/tiennm99/coolify.git
synced 2026-08-20 06:23:23 +00:00
Use the warning accent for dark-mode loading indicators and simplify desktop navigation chrome by removing sidebar and top-bar separator borders. Add regression coverage for loading contrast and checkpoint spinner markup.
11 lines
343 B
PHP
11 lines
343 B
PHP
<?php
|
|
|
|
it('uses the high contrast accent for a running checkpoint spinner', function () {
|
|
$view = $this->blade('<x-checkpoint-item title="Server is reachable" status="running" />');
|
|
|
|
$view
|
|
->assertSee('dark:text-warning', false)
|
|
->assertSee('animate-spin', false)
|
|
->assertDontSee('spinner-current', false);
|
|
});
|