@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 +2 -2
- package/index.cjs.js.map +1 -1
- package/index.js +2 -2
- package/index.js.map +1 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -7600,8 +7600,8 @@ class HelpAndProfilePage {
|
|
|
7600
7600
|
await this.page
|
|
7601
7601
|
.getByTestId(PROFILE_SECTION_SELECTORS.logoutButton)
|
|
7602
7602
|
.click();
|
|
7603
|
-
await expect(this.page).toHaveURL(NEETO_AUTH_BASE_URL());
|
|
7604
|
-
await expect(this.page).toHaveURL(new RegExp(ROUTES.loginLink));
|
|
7603
|
+
await expect(this.page).toHaveURL(new RegExp(NEETO_AUTH_BASE_URL()), { timeout: 15000 });
|
|
7604
|
+
await expect(this.page).toHaveURL(new RegExp(ROUTES.loginLink), { timeout: 15000 });
|
|
7605
7605
|
});
|
|
7606
7606
|
};
|
|
7607
7607
|
this.page = page;
|