coolify/tests/Feature/LightModeScrollbarTest.php

12 lines
312 B
PHP
Raw Normal View History

<?php
test('native scrollbars follow the active theme', function () {
$styles = file_get_contents(resource_path('css/app.css'));
expect($styles)
->toContain('html {')
->toContain('color-scheme: light;')
->toContain('html.dark {')
->toContain('color-scheme: dark;');
});