mirror of
https://github.com/tiennm99/coolify.git
synced 2026-08-20 12:23:48 +00:00
Move V5 source, migrations, UI, scripts, and tests into documentation, then remove V5 routes, models, jobs, configuration, dependencies, and application hooks.
12 lines
534 B
Plaintext
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"');
|
|
});
|