2026-08-05 15:56:59 +00:00
|
|
|
<?php
|
|
|
|
|
|
2026-08-05 18:17:21 +00:00
|
|
|
it('uses card hover animation without a right arrow on project and server cards', function () {
|
2026-08-05 15:56:59 +00:00
|
|
|
$views = [
|
|
|
|
|
resource_path('views/livewire/project/index.blade.php'),
|
|
|
|
|
resource_path('views/livewire/server/index.blade.php'),
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
foreach ($views as $view) {
|
|
|
|
|
$contents = file_get_contents($view);
|
|
|
|
|
|
|
|
|
|
expect($contents)
|
2026-08-05 18:17:21 +00:00
|
|
|
->toContain('hover:-translate-y-px')
|
|
|
|
|
->toContain('hover:shadow-md')
|
|
|
|
|
->not->toContain('group-hover:translate-x-0.5 group-hover:opacity-100')
|
|
|
|
|
->not->toContain('pointer-events-none absolute top-1/2 right-3');
|
2026-08-05 15:56:59 +00:00
|
|
|
}
|
|
|
|
|
});
|