mirror of
https://github.com/tiennm99/coolify.git
synced 2026-08-20 12:23:48 +00:00
Open the global terminal outside Livewire navigation, clarify that image tag and SHA256 digest are mutually exclusive, inset the GitLab empty state, and show loading on Dockerfile create. Add regression tests.
10 lines
320 B
PHP
10 lines
320 B
PHP
<?php
|
|
|
|
it('shows that image tag and digest are mutually exclusive', function () {
|
|
$view = file_get_contents(resource_path('views/livewire/project/new/docker-image.blade.php'));
|
|
|
|
expect($view)
|
|
->toContain('aria-label="Tag and SHA256 digest are mutually exclusive"')
|
|
->toContain('>OR</span>');
|
|
});
|