@bigbinary/neeto-playwright-commons 1.11.6 → 1.11.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.
package/index.cjs.js CHANGED
@@ -3557,10 +3557,10 @@ class CustomCommands {
3557
3557
  const pageContext = customPageContext !== null && customPageContext !== void 0 ? customPageContext : this.page;
3558
3558
  await pageContext.waitForLoadState("load");
3559
3559
  await Promise.all([
3560
- test$1.expect(pageContext.getByTestId(COMMON_SELECTORS.pageLoader)).toBeHidden({
3560
+ test$1.expect(pageContext.getByTestId(COMMON_SELECTORS.pageLoader)).toHaveCount(0, {
3561
3561
  timeout: visibilityTimeout,
3562
3562
  }),
3563
- test$1.expect(pageContext.getByTestId(COMMON_SELECTORS.spinner)).toBeHidden({
3563
+ test$1.expect(pageContext.getByTestId(COMMON_SELECTORS.uiSpinner)).toHaveCount(0, {
3564
3564
  timeout: visibilityTimeout,
3565
3565
  }),
3566
3566
  ]);