Files
coolify/docs/v5/archive/tests/Feature/V5/ClustersControlHeightTest.php.txt
Andras Bacsai 76030a30d4 chore(v5): archive V5 implementation and remove runtime integration
Move V5 source, migrations, UI, scripts, and tests into documentation, then remove V5 routes, models, jobs, configuration, dependencies, and application hooks.
2026-08-15 19:13:30 +02:00

12 lines
534 B
Plaintext

<?php
it('keeps the cluster selector and add button the same height', function () {
$clustersPage = file_get_contents(resource_path('js/v5/Pages/Clusters.tsx'));
expect($clustersPage)->toContain('<SelectTrigger')
->and($clustersPage)->toContain('className="w-full sm:w-72"')
->and($clustersPage)->toContain('variant="coolify"')
->and($clustersPage)->toContain('size="default"')
->and($clustersPage)->not->toContain('variant="coolify"\n size="sm"');
});