2026-06-04 13:41:38 +00:00
|
|
|
<?php
|
|
|
|
|
|
2026-07-11 19:35:10 +00:00
|
|
|
test('navbar does not render the removed theme switcher', function () {
|
2026-06-04 13:41:38 +00:00
|
|
|
$navbar = file_get_contents(__DIR__.'/../../resources/views/components/navbar.blade.php');
|
|
|
|
|
|
2026-07-11 19:35:10 +00:00
|
|
|
expect($navbar)->not->toContain('cycleTheme()')
|
2026-06-04 13:41:38 +00:00
|
|
|
->and($navbar)->not->toContain('aria-label="Theme switcher"')
|
|
|
|
|
->and($navbar)->not->toContain('@click.stop="setTheme(\'light\')"')
|
|
|
|
|
->and($navbar)->not->toContain('@click.stop="setTheme(\'system\')"')
|
|
|
|
|
->and($navbar)->not->toContain('@click.stop="setTheme(\'dark\')"')
|
2026-07-11 19:35:10 +00:00
|
|
|
->and($navbar)->not->toContain('<span class="text-left menu-item-label">Theme</span>');
|
2026-06-04 13:41:38 +00:00
|
|
|
});
|