Files
coolify/tests/Feature/CheckpointItemContrastTest.php
Andras Bacsai 6ad9605734 fix(ui): improve dark-mode loading contrast and remove header borders
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.
2026-08-16 21:00:33 +02:00

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);
});