Skip to content

Commit 7216562

Browse files
authored
chore: fix invalid filter parameter in wtr-utils (#9284)
1 parent 094a40a commit 7216562

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

wtr-utils.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ const getUnitTestGroups = (packages) => {
182182
*/
183183
const getVisualTestGroups = (packages, theme) => {
184184
if (theme === 'base') {
185-
packages = packages.filter(({ name }) => !name.includes('lumo'));
185+
packages = packages.filter((pkg) => !pkg.includes('lumo'));
186186
}
187187

188188
return packages.map((pkg) => {

0 commit comments

Comments
 (0)