mirror of
https://github.com/tiennm99/coolify.git
synced 2026-08-25 14:26:59 +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.
20 lines
696 B
PHP
20 lines
696 B
PHP
<?php
|
|
|
|
it('provides dynamic multi-select resource filters', function () {
|
|
$view = file_get_contents(resource_path('views/livewire/project/resource/index.blade.php'));
|
|
|
|
expect($view)
|
|
->toContain('typeFilters: []')
|
|
->toContain('tagFilters: []')
|
|
->toContain('serverFilters: []')
|
|
->toContain('statusFilters: []')
|
|
->toContain('get filterGroups()')
|
|
->toContain("label: 'Tags'")
|
|
->toContain("label: 'Servers'")
|
|
->toContain("label: 'Statuses'")
|
|
->toContain('toggleFilter(group.key, option.value)')
|
|
->toContain('clearFilters()')
|
|
->toContain('Clear filters')
|
|
->not->toContain("typeFilter: 'all'");
|
|
});
|