mirror of
https://github.com/tiennm99/coolify.git
synced 2026-08-25 16:26:16 +00:00
Dispatch edit-domain-saved so Alpine closes the domain edit modal, wire Save to updateDomain, and force white active log toolbar text in dark mode. Seed railpack examples on the local Docker destination only and remove Lima servers, environments, and V5DevLimaSeeder.
22 lines
1021 B
PHP
22 lines
1021 B
PHP
<?php
|
|
|
|
test('active deployment log controls use a coollabs background and white icon', function () {
|
|
$styles = file_get_contents(resource_path('css/app.css'));
|
|
|
|
expect($styles)
|
|
->toMatch('/\.logs-viewer-btn-active\s*\{[^}]*background:\s*var\(--color-coollabs\);[^}]*color:\s*#fff;/s')
|
|
->toMatch('/\.dark \.logs-viewer-btn-active\s*\{[^}]*color:\s*#fff;/s')
|
|
->not->toMatch('/\.logs-viewer-btn-active\s*\{[^}]*var\(--color-warning\)/s');
|
|
});
|
|
|
|
test('deployment logs use light surfaces in light mode and dark surfaces in dark mode', function () {
|
|
$view = file_get_contents(resource_path('views/livewire/project/application/deployment/show.blade.php'));
|
|
|
|
expect($view)
|
|
->toContain('bg-white text-neutral-800')
|
|
->toContain('dark:bg-[#0d0d0d] dark:text-neutral-100')
|
|
->toContain('border-neutral-200 shadow-sm dark:border-neutral-800')
|
|
->toContain('border-neutral-200! bg-white!')
|
|
->toContain('dark:border-white/[0.08]! dark:bg-white/[0.05]!');
|
|
});
|