mirror of
https://github.com/tiennm99/coolify.git
synced 2026-08-20 04:23:34 +00:00
Move V5 source, migrations, UI, scripts, and tests into documentation, then remove V5 routes, models, jobs, configuration, dependencies, and application hooks.
8 lines
323 B
PHP
8 lines
323 B
PHP
<?php
|
|
|
|
test('app layouts always reserve space for the vertical scrollbar', function (string $layout) {
|
|
$contents = file_get_contents(dirname(__DIR__, 2).'/'.$layout);
|
|
|
|
expect($contents)->toMatch('/<body(?:\s+[^>]*)?class="[^"]*overflow-y-scroll[^"]*"[^>]*>/');
|
|
})->with(['resources/views/layouts/base.blade.php']);
|