Skip to content

Commit 53c3d55

Browse files
committed
fix: e2e test failing
1 parent daef06f commit 53c3d55

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/e2e/specs/loop.spec.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,8 @@ test.describe('Feedzy Loop', () => {
5656

5757
await page.goto('/wp-admin/edit.php');
5858

59-
await page.hover('a.row-title');
59+
const postTitle = await page.locator('a.row-title').first();
60+
await postTitle.hover();
6061
await page.getByLabel('View “Feedzy Loop Test”').click();
6162

6263
await page.waitForTimeout(5000);

0 commit comments

Comments
 (0)