mirror of
https://github.com/tiennm99/coolify.git
synced 2026-08-20 02:27:57 +00:00
Extract application/database/service configuration sidebars and unified headings; improve clone-to-environment, embedded deployments, storage actions, OAuth icons, terminal, and shared form components.
14 lines
583 B
PHP
14 lines
583 B
PHP
<?php
|
|
|
|
it('uses the current listbox design for environment variable suggestions', function () {
|
|
$view = file_get_contents(resource_path('views/components/forms/env-var-input.blade.php'));
|
|
|
|
expect($view)
|
|
->toContain('class="listbox-panel')
|
|
->toContain('class="listbox-option justify-start! gap-2.5!"')
|
|
->toContain("'bg-neutral-100 dark:bg-white/[0.08]': index === selectedIndex")
|
|
->toContain('border-warning/25 bg-warning/10')
|
|
->toContain('border-emerald-500/25 bg-emerald-500/10')
|
|
->not->toContain('dark:bg-coolgray-100');
|
|
});
|