mirror of
https://github.com/tiennm99/coolify.git
synced 2026-08-25 18:25:58 +00:00
Add V5 dashboard controls and validation for enabling server-backed app ingress, track generic ingress type/status fields, and improve Flux dispatch timeout/error handling.
17 lines
583 B
PHP
17 lines
583 B
PHP
<?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.'");
|
|
});
|