Standardize highlighted buttons, selected controls, and loading indicators on coollabs accent colors; improve light-mode log toolbar styling; enhance small popups with compact/icon modes; and align navbars, helpers, and related layouts with matching tests.
14 lines
596 B
PHP
14 lines
596 B
PHP
<?php
|
|
|
|
test('breadcrumb switchers indicate the current item with background only', function () {
|
|
$views = collect([
|
|
resource_path('views/components/top-breadcrumb.blade.php'),
|
|
resource_path('views/components/breadcrumb-switcher.blade.php'),
|
|
resource_path('views/livewire/switch-team.blade.php'),
|
|
])->map(fn (string $path): string => file_get_contents($path));
|
|
|
|
expect($views->implode("\n"))
|
|
->not->toContain('name="check-circle"')
|
|
->and($views->every(fn (string $view): bool => str_contains($view, 'bg-neutral-100')))
|
|
->toBeTrue();
|
|
});
|