Skip to content

Commit 275531b

Browse files
committed
Fix selector
1 parent bd86d5a commit 275531b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/playwright/visual.spec.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ test('visual', async ({page, extensionId}) => {
5454

5555
// Get page height by getting the footer and adding height and y position
5656

57-
const footer = /** @type {import('@playwright/test').ElementHandle<HTMLElement>} */ (await page.locator('.footer-padding').elementHandle());
57+
const footer = /** @type {import('@playwright/test').ElementHandle<HTMLElement>} */ (await page.locator('.footer-padding').elementHandle());
5858
expect(footer).not.toBe(null);
5959
const boundingBox = /** @type {NonNullable<Awaited<ReturnType<import('@playwright/test').ElementHandle<HTMLElement>['boundingBox']>>>} */ (await footer.boundingBox());
6060
expect(boundingBox).not.toBe(null);

0 commit comments

Comments
 (0)