2026-08-10 09:08:04 +00:00
|
|
|
<?php
|
|
|
|
|
|
2026-08-10 09:52:24 +00:00
|
|
|
it('uses a thin warning yellow focus ring in dark mode', function () {
|
2026-08-10 09:08:04 +00:00
|
|
|
$appStyles = file_get_contents(dirname(__DIR__, 2).'/resources/css/app.css');
|
|
|
|
|
expect($appStyles)
|
chore(v5): archive V5 implementation and remove runtime integration
Move V5 source, migrations, UI, scripts, and tests into documentation, then remove V5 routes, models, jobs, configuration, dependencies, and application hooks.
2026-08-15 17:13:30 +00:00
|
|
|
->toContain('ring-2 ring-coollabs dark:ring-1 dark:ring-warning');
|
2026-08-10 09:08:04 +00:00
|
|
|
});
|