From b66592612abeb3b3401e230eeb545bbf6d1b1c18 Mon Sep 17 00:00:00 2001 From: Jari Kolehmainen Date: Fri, 30 Dec 2022 13:23:46 +0200 Subject: [PATCH] integration test fix Signed-off-by: Jari Kolehmainen --- integration/helpers/utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration/helpers/utils.ts b/integration/helpers/utils.ts index 02aef4f3fd..1d8f5ffb94 100644 --- a/integration/helpers/utils.ts +++ b/integration/helpers/utils.ts @@ -26,7 +26,7 @@ async function getMainWindow(app: ElectronApplication, timeout = 50_000): Promis const onWindow = (page: Page) => { console.log(`Page opened: ${page.url()}`); - if (page.url().startsWith("http://localhost")) { + if (page.url().startsWith("https://lens.app")) { cleanup(); console.log(stdoutBuf); resolve(page);