@bigbinary/neeto-playwright-commons 1.8.3 → 1.8.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.cjs.js CHANGED
@@ -7635,8 +7635,8 @@ class HelpAndProfilePage {
7635
7635
  await this.page
7636
7636
  .getByTestId(PROFILE_SECTION_SELECTORS.logoutButton)
7637
7637
  .click();
7638
- await test.expect(this.page).toHaveURL(NEETO_AUTH_BASE_URL());
7639
- await test.expect(this.page).toHaveURL(new RegExp(ROUTES.loginLink));
7638
+ await test.expect(this.page).toHaveURL(new RegExp(NEETO_AUTH_BASE_URL()), { timeout: 15000 });
7639
+ await test.expect(this.page).toHaveURL(new RegExp(ROUTES.loginLink), { timeout: 15000 });
7640
7640
  });
7641
7641
  };
7642
7642
  this.page = page;