@bigbinary/neeto-playwright-commons 1.12.6 → 1.12.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
@@ -24210,8 +24210,7 @@ class EditorPage {
24210
24210
  await this.page
24211
24211
  .getByTestId(NEETO_EDITOR_SELECTORS.dynamicVariableSelector(key))
24212
24212
  .click();
24213
- const formattedValue = value.length > 25 ? `${value.substring(0, 25)}...` : value;
24214
- await test$1.expect(this.contentField.getByText(formattedValue)).toBeVisible();
24213
+ await test$1.expect(this.contentField.getByText(neetoCist.truncate(value, 25))).toBeVisible();
24215
24214
  }
24216
24215
  };
24217
24216
  this.buttonsAndVerifications = {