feat(ui): Shadow UI redesign, domain management, and DNS autoconfigure (#11119)

Co-authored-by: ShadowArcanist <162910371+ShadowArcanist@users.noreply.github.com>
This commit is contained in:
Andras Bacsai
2026-08-03 23:11:54 +02:00
committed by GitHub
co-authored by ShadowArcanist
parent 0b843bb07c
commit 8ae56587d5
497 changed files with 44045 additions and 22630 deletions
@@ -164,7 +164,7 @@ test('admin dev view shows unlocked env value', function () {
$component = Livewire::test(EnvironmentVariableAll::class, [
'resource' => $this->application,
]);
])->call('switch');
expect($component->get('variables'))->toContain('UNLOCKED_VAR=secret-unlocked-value');
});
@@ -175,7 +175,7 @@ test('admin dev view hides locked env value', function () {
$component = Livewire::test(EnvironmentVariableAll::class, [
'resource' => $this->application,
]);
])->call('switch');
expect($component->get('variables'))->toContain('LOCKED_VAR=(Locked Secret, delete and add again to change)');
expect($component->get('variables'))->not->toContain('secret-locked-value');
@@ -187,7 +187,7 @@ test('member dev view hides all env values', function () {
$component = Livewire::test(EnvironmentVariableAll::class, [
'resource' => $this->application,
]);
])->call('switch');
expect($component->get('variables'))->not->toContain('secret-unlocked-value');
expect($component->get('variables'))->not->toContain('secret-locked-value');