@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.cjs.js
CHANGED
|
@@ -189105,6 +189105,9 @@ const ROUTES = {
|
|
|
189105
189105
|
customDomain: "/admin/admin-panel/general/custom-domain",
|
|
189106
189106
|
ipRestriction: "/admin/admin-panel/general/ip-restriction",
|
|
189107
189107
|
},
|
|
189108
|
+
auth: {
|
|
189109
|
+
adminPanel: "/admin/admin-panel",
|
|
189110
|
+
},
|
|
189108
189111
|
};
|
|
189109
189112
|
const API_ROUTES = {
|
|
189110
189113
|
teamMembers: {
|
|
@@ -189637,7 +189640,7 @@ class HelpAndProfilePage {
|
|
|
189637
189640
|
await this.page
|
|
189638
189641
|
.getByTestId(PROFILE_SECTION_SELECTORS.profileOrganizationSettingsButton)
|
|
189639
189642
|
.click();
|
|
189640
|
-
await test$1.expect(this.page).toHaveURL(new RegExp(ROUTES.
|
|
189643
|
+
await test$1.expect(this.page).toHaveURL(new RegExp(ROUTES.auth.adminPanel));
|
|
189641
189644
|
});
|
|
189642
189645
|
};
|
|
189643
189646
|
this.openAndVerifyStatus = async (appName) => {
|