mirror of
https://github.com/tiennm99/coolify.git
synced 2026-08-20 02:27:57 +00:00
Add dedicated service volume-backup Livewire pages and routes, wire shared storage backups for services, and pass S3 trusted hosts into MinIO resolve options. Also refine breadcrumbs, sticky sidebars, destination/GitHub layouts, resource filters, and login recovery link.
13 lines
504 B
PHP
13 lines
504 B
PHP
<?php
|
|
|
|
it('returns after creating a destination and shows submit loading state', function () {
|
|
$component = file_get_contents(app_path('Livewire/Destination/New/Docker.php'));
|
|
$view = file_get_contents(resource_path('views/livewire/destination/new/docker.blade.php'));
|
|
|
|
expect($component)
|
|
->toContain("return redirectRoute(\$this, 'destination.show', [\$docker->uuid]);");
|
|
expect($view)
|
|
->toContain('wire:submit="submit"')
|
|
->toContain('wire:target="submit"');
|
|
});
|