Files
coolify/docs/v5/archive/tests/Feature/V5/ClusterCapabilitiesSummaryTest.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

17 lines
583 B
Plaintext

<?php
it('does not render server capability summaries on the cluster page', function () {
$clustersPage = file_get_contents(resource_path('js/v5/Pages/Clusters.tsx'));
expect($clustersPage)
->not->toContain('Capabilities:')
->not->toContain('normalizeCapabilities');
});
it('shows server update error messages returned by the v5 api', function () {
$clustersPage = file_get_contents(resource_path('js/v5/Pages/Clusters.tsx'));
expect($clustersPage)
->toContain("payload?.message ?? 'Unable to update this server. Please try again.'");
});