2026-06-19 09:44:42 +00:00
|
|
|
<?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');
|
|
|
|
|
});
|
2026-06-20 21:10:48 +00:00
|
|
|
|
|
|
|
|
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.'");
|
|
|
|
|
});
|