toContain('title="Docker Compose"') ->toContain(':isLarge="true"') ->toContain('') ->toContain("\$dispatch('compose-preview-toggle')") ->toContain("\$dispatch('compose-save')") ->toContain('@compose-save-finished.window="saving = false"') ->toContain('@compose-validate-finished.window="validating = false"') ->toContain('@click="validating = true; $dispatch(\'compose-validate\')"') ->toContain('x-bind:disabled="validating"') ->toContain('') ->toContain('') ->toContain('x-bind:disabled="saving"') ->not->toContain('name="refresh"') ->not->toContain("saving ? 'Saving...' : 'Save changes'") ->not->toContain(' :disabled="saving"') ->toContain('Preview generated Compose') ->toContain('Back to source Compose') ->toContain('Save changes') ->toContain('isHighlighted'); expect($modal)->toContain('lg:w-[95vw]! lg:max-w-7xl!'); }); it('renders the compose editor with clear guidance settings and actions', function () { $view = file_get_contents(resource_path('views/livewire/project/service/edit-compose.blade.php')); expect($view) ->toContain('') ->not->toContain('View the final names') ->toContain('Use plain-text editor') ->toContain('min-h-[24rem]') ->toContain('@compose-preview-toggle.window') ->toContain('@compose-save.window') ->toContain('@compose-validate.window="$wire.validateCompose().finally(() => $dispatch(\'compose-validate-finished\'))"') ->not->toContain("finally(() => \$dispatch('compose-save-finished'))") ->not->toContain('sticky bottom-0') ->not->toContain('Cancel') ->not->toContain('Show Normal Textarea') ->not->toContain('Show Deployable Compose'); }); it('keeps the save button loading until the parent compose save finishes', function () { $component = file_get_contents(app_path('Livewire/Project/Service/StackForm.php')); expect($component) ->toContain('public function saveCompose($raw)') ->toContain("\$this->dispatch('compose-save-finished')"); }); it('does not show a saving notification for compose changes', function () { $component = file_get_contents(app_path('Livewire/Project/Service/EditCompose.php')); expect($component)->not->toContain("\$this->dispatch('info', 'Saving new docker compose...')"); }); it('keeps the saving state as an Alpine button binding', function () { $html = Blade::render('Save changes'); expect($html)->toContain('x-bind:disabled="saving"'); });