@bigbinary/neeto-commons-frontend 2.0.88 → 2.0.90

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/README.md CHANGED
@@ -49,8 +49,10 @@ Category
49
49
  - [useFieldSubmit](./docs/react/hooks.md#usefieldsubmit)
50
50
  - [useDisplayErrorPage](./docs/react/hooks.md#usedisplayerrorpage)
51
51
  - [useErrorDisplayStore](./docs/react/hooks.md#useerrordisplaystore)
52
- - [useHotKeys](./docs/react/hooks.md#useHotKeys)
53
- - [useTimer](./docs/react/hooks.md#useTimer)
52
+ - [useHotKeys](./docs/react/hooks.md#usehotkeys)
53
+ - [useTimer](./docs/react/hooks.md#usetimer)
54
+ - [useRegisterNavigationCheckpoint](./docs/react/hooks.md#useregisternavigationcheckpoint)
55
+ - [useNavigationCheckpoint](./docs/react/hooks.md#usenavigationcheckpoint)
54
56
  - [useStateWithDependency](./docs/react/hooks.md#usestatewithdependency)
55
57
  - [withImmutableActions](./docs/react/utils.md#withimmutableactions)
56
58
  - [withTitle](./docs/react/utils.md#withtitle)
@@ -1202,18 +1202,15 @@ var clickOnHelpSubTab = function clickOnHelpSubTab(tabSelector, tabText) {
1202
1202
  cy.get(tabSelector).should("have.text", tabText).click();
1203
1203
  };
1204
1204
  var verifyHelpDocumentationLink = function verifyHelpDocumentationLink(_ref2) {
1205
- var url = _ref2.url,
1206
- articleTitle = _ref2.articleTitle,
1205
+ var articleTitle = _ref2.articleTitle,
1207
1206
  alias = _ref2.alias,
1208
1207
  _ref2$requestCount = _ref2.requestCount,
1209
1208
  requestCount = _ref2$requestCount === void 0 ? 3 : _ref2$requestCount;
1210
1209
  cy.get(helpIconSelectors.helpButton).click();
1211
- cy.openInSameTabOnClick({
1212
- selector: helpIconSelectors.documentationButton,
1213
- url: url,
1214
- alias: "navigateToHelpDocumentation"
1215
- });
1216
- cy.get(commonSelectors.articlePageTitle).should("have.text", articleTitle);
1210
+ cy.clickByRemoveTargetAttr(helpIconSelectors.documentationButton);
1211
+ cy.get(commonSelectors.articlePageTitle, {
1212
+ timeout: 10000
1213
+ }).should("have.text", articleTitle);
1217
1214
  cy.interceptApi(alias, requestCount);
1218
1215
  cy.go("back");
1219
1216
  cy.waitForMultipleRequest("@".concat(alias), requestCount);