@bigbinary/neeto-playwright-commons 1.22.4 → 1.22.6
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 +4 -1
- package/index.cjs.js.map +1 -1
- package/index.d.ts +3 -0
- package/index.js +4 -1
- package/index.js.map +1 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
package/index.js
CHANGED
|
@@ -189085,6 +189085,9 @@ const ROUTES = {
|
|
|
189085
189085
|
customDomain: "/admin/admin-panel/general/custom-domain",
|
|
189086
189086
|
ipRestriction: "/admin/admin-panel/general/ip-restriction",
|
|
189087
189087
|
},
|
|
189088
|
+
auth: {
|
|
189089
|
+
adminPanel: "/admin/admin-panel",
|
|
189090
|
+
},
|
|
189088
189091
|
};
|
|
189089
189092
|
const API_ROUTES = {
|
|
189090
189093
|
teamMembers: {
|
|
@@ -189617,7 +189620,7 @@ class HelpAndProfilePage {
|
|
|
189617
189620
|
await this.page
|
|
189618
189621
|
.getByTestId(PROFILE_SECTION_SELECTORS.profileOrganizationSettingsButton)
|
|
189619
189622
|
.click();
|
|
189620
|
-
await expect(this.page).toHaveURL(new RegExp(ROUTES.
|
|
189623
|
+
await expect(this.page).toHaveURL(new RegExp(ROUTES.auth.adminPanel));
|
|
189621
189624
|
});
|
|
189622
189625
|
};
|
|
189623
189626
|
this.openAndVerifyStatus = async (appName) => {
|