From b249627434d3a94420ac4d98c3ce720767e57b43 Mon Sep 17 00:00:00 2001 From: toasted-nutbread Date: Sat, 16 Dec 2023 20:04:56 -0500 Subject: Update eslint spacing rules (#366) * Add space-infix-ops rule * Add no-multi-spaces --------- Co-authored-by: Darius Jahandarie --- test/playwright/visual.spec.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'test/playwright/visual.spec.js') diff --git a/test/playwright/visual.spec.js b/test/playwright/visual.spec.js index 8b48b7c0..b912f8b4 100644 --- a/test/playwright/visual.spec.js +++ b/test/playwright/visual.spec.js @@ -72,7 +72,9 @@ test('visual', async ({page, extensionId}) => { popup_frame = await frame_attached; // wait for popup to be attached } try { - await (await /** @type {import('@playwright/test').Frame} */ (popup_frame).frameElement()).waitForElementState('visible', {timeout: 500}); // some tests don't have a popup, so don't fail if it's not there; TODO: check if the popup is expected to be there + // Some tests don't have a popup, so don't fail if it's not there + // TODO: check if the popup is expected to be there + await (await /** @type {import('@playwright/test').Frame} */ (popup_frame).frameElement()).waitForElementState('visible', {timeout: 500}); } catch (error) { console.log(test_name + ' has no popup'); } -- cgit v1.2.3