@bigbinary/neeto-playwright-commons 4.6.6 → 4.6.7

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.
Files changed (2) hide show
  1. package/index.js +4 -2
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -121899,7 +121899,9 @@ class CustomDomainPage {
121899
121899
  await Promise.all([
121900
121900
  expect(validateButton).toBeVisible(),
121901
121901
  expect(this.page
121902
- .getByTestId(COMMON_SELECTORS.paneBody)
121902
+ .getByTestId(IS_SHADCN_UI
121903
+ ? COMMON_SELECTORS.sheetWrapper
121904
+ : COMMON_SELECTORS.paneBody)
121903
121905
  .getByRole("cell", { name: domain.split(".")[0] })).toBeVisible(),
121904
121906
  ]);
121905
121907
  await this.neetoPlaywrightUtilities.waitForPageLoad();
@@ -122054,7 +122056,7 @@ class CustomDomainPage {
122054
122056
  await Promise.all(customDomains.map(({ hostname }) => this.customDomainApi.delete(hostname)));
122055
122057
  };
122056
122058
  isCertificateLimitExceeded = () => this.page
122057
- .getByTestId(COMMON_SELECTORS.paneBody)
122059
+ .getByTestId(IS_SHADCN_UI ? COMMON_SELECTORS.sheetWrapper : COMMON_SELECTORS.paneBody)
122058
122060
  .getByText(RegExp(CERTIFICATE_LIMIT_EXCEEDED_REGEXP, "i"))
122059
122061
  .isVisible();
122060
122062
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bigbinary/neeto-playwright-commons",
3
- "version": "4.6.6",
3
+ "version": "4.6.7",
4
4
  "description": "A package encapsulating common playwright code across neeto projects.",
5
5
  "repository": "git@github.com:bigbinary/neeto-playwright-commons.git",
6
6
  "license": "apache-2.0",