Scroll active application settings sections with buttons instead of Livewire navigation, persist sidebar collapse even with auto-collapse, drop the unused modal id, and right-align destination status.
19 lines
895 B
PHP
19 lines
895 B
PHP
<?php
|
|
|
|
it('uses the shared status summary in the primary application server card', function () {
|
|
$view = file_get_contents(resource_path('views/livewire/project/shared/destination.blade.php'));
|
|
$applicationSection = str($view)->before('@else')->value();
|
|
|
|
expect($applicationSection)
|
|
->toContain('<x-status-summary :status="$resource->status" align="right" />')
|
|
->not->toContain('<x-status :resource="$resource"');
|
|
});
|
|
|
|
it('links each configured server card to its server page', function () {
|
|
$view = file_get_contents(resource_path('views/livewire/project/shared/destination.blade.php'));
|
|
|
|
expect($view)
|
|
->toContain("route('server.show', ['server_uuid' => data_get(\$resource, 'destination.server.uuid')])")
|
|
->toContain("route('server.show', ['server_uuid' => data_get(\$destination, 'server.uuid')])")
|
|
->toContain('Open server');
|
|
});
|