-
toContain("'application_uuid' => \$application->uuid");
});
-it('keeps the deployment log sidebar fixed in the layout without a top gap', function () {
+it('welds the deployment log sidebar to the main sidebar', function () {
$deployment = file_get_contents(resource_path('views/livewire/project/application/deployment/show.blade.php'));
$css = file_get_contents(resource_path('css/app.css'));
- expect($deployment)->toContain(':flush="true"')
- ->and($css)->toContain('.application-settings-navigation.is-flush')
- ->and($css)->toContain('position: static;')
- ->and($css)->toContain('overflow: visible;');
+ expect($deployment)->not->toContain(':flush="true"')
+ ->and($css)->toContain('left: var(--sidebar-w, 14rem);')
+ ->and($css)->toContain('position: fixed;');
});
it('uses the same mobile heading gap on deployment pages as application settings', function () {