Skip to content

Commit ea8f5c1

Browse files
committed
Fix website tests
1 parent 455ca59 commit ea8f5c1

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

ux.symfony.com/tests/Functional/UxPackagesTest.php

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,12 @@ public static function getSmokeTests(): \Generator
5959
continue;
6060
}
6161

62+
if ($package->isDeprecated()) {
63+
// Deprecated packages have a minimal layout
64+
yield $package->getName() => [$package, 'Deprecated Package'];
65+
continue;
66+
}
67+
6268
yield $package->getName() => [$package, \sprintf('%s Doc', $package->getHumanName())];
6369
}
6470
}

0 commit comments

Comments
 (0)