@bigbinary/neeto-playwright-commons 1.10.7 → 1.10.9
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 +3 -1
- package/index.cjs.js.map +1 -1
- package/index.d.ts +4 -0
- package/index.js +3 -1
- package/index.js.map +1 -1
- package/package.json +1 -1
package/index.cjs.js
CHANGED
|
@@ -99,6 +99,7 @@ const ROUTES = {
|
|
|
99
99
|
show: (id) => `/team_members/teams/${id}`,
|
|
100
100
|
},
|
|
101
101
|
attachment: `/neeto_editor${BASE_URL}/direct_uploads/attach`,
|
|
102
|
+
dashboard: "/dashboard",
|
|
102
103
|
};
|
|
103
104
|
const API_ROUTES = {
|
|
104
105
|
teamMembers: {
|
|
@@ -335,6 +336,7 @@ const COMMON_SELECTORS = {
|
|
|
335
336
|
subTitleHeading: "menubar-subtitle-heading",
|
|
336
337
|
noDataTitle: "no-data-title",
|
|
337
338
|
noDataDescription: "no-data-description",
|
|
339
|
+
noDataHelpText: "no-data-help-text",
|
|
338
340
|
backdrop: "neeto-backdrop",
|
|
339
341
|
menuBarHeading: "menubar-heading",
|
|
340
342
|
dropdownWrapper: "nui-select-container-wrapper",
|
|
@@ -13139,7 +13141,7 @@ class HelpAndProfilePage {
|
|
|
13139
13141
|
await this.page
|
|
13140
13142
|
.getByTestId(PROFILE_SECTION_SELECTORS.profileOrganizationSettingsButton)
|
|
13141
13143
|
.click();
|
|
13142
|
-
await test$1.expect(this.page).toHaveURL(new RegExp(ROUTES.
|
|
13144
|
+
await test$1.expect(this.page).toHaveURL(new RegExp(ROUTES.dashboard));
|
|
13143
13145
|
});
|
|
13144
13146
|
};
|
|
13145
13147
|
this.verifyLogoutV2 = async () => {
|