coolify/tests/Feature/ApplicationRollbackIconTest.php
Andras Bacsai 8ae56587d5
feat(ui): Shadow UI redesign, domain management, and DNS autoconfigure (#11119)
Co-authored-by: ShadowArcanist <162910371+ShadowArcanist@users.noreply.github.com>
2026-08-03 23:11:54 +02:00

16 lines
575 B
PHP

<?php
/**
* Application configuration Rollback nav must use the reicon "time-back" glyph.
*/
test('application rollback menu uses the time-back icon', function () {
$configuration = file_get_contents(resource_path('views/livewire/project/application/configuration.blade.php'));
$reicon = file_get_contents(resource_path('views/components/reicon.blade.php'));
expect($configuration)
->toMatch("/'Rollback'\\s*=>\\s*'time-back'/")
->not->toMatch("/'Rollback'\\s*=>\\s*'logout'/");
expect($reicon)
->toContain("'time-back' =>");
});