@baloise/ds-testing 17.2.1 → 17.2.2-nightly.20250109

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.
@@ -1,6 +1,6 @@
1
1
  import { b as byTestId, s as selectors } from './index.esm2.js';
2
2
  import { w as wrapOptions, l as log, c as checkAriaLabel, a as waitAfterFramePaint, b as waitAfterIdleCallback, d as areComponentsReady, e as deepReady, f as isDropDown } from './helpers.esm.js';
3
- import { waitAfterLargestContentfulPaintCallback } from '@baloise/ds-core';
3
+ import { waitAfterLargestContentfulPaintCallback, waitOnLoadEventCallback } from '@baloise/ds-core';
4
4
  import { balViewport } from './viewports.esm.js';
5
5
 
6
6
  Cypress.Commands.add("getByTestId", function(testID, options) {
@@ -244,6 +244,8 @@ Cypress.Commands.add("waitForDesignSystem", function() {
244
244
  });
245
245
  }).then(function() {
246
246
  return waitAfterLargestContentfulPaintCallback();
247
+ }).then(function() {
248
+ return waitOnLoadEventCallback();
247
249
  }).then(function() {
248
250
  return waitAfterIdleCallback();
249
251
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@baloise/ds-testing",
3
- "version": "17.2.1",
3
+ "version": "17.2.2-nightly.20250109",
4
4
  "description": "The Baloise Design-System is an open source project for styling awesome web applications that follow the Baloise corporate styling guidelines.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -12,7 +12,7 @@
12
12
  "homepage": "https://design.baloise.dev",
13
13
  "license": "Apache-2.0",
14
14
  "dependencies": {
15
- "@baloise/ds-core": "17.2.1",
15
+ "@baloise/ds-core": "17.2.2-nightly.20250109",
16
16
  "cypress-file-upload": "~5.0.8"
17
17
  },
18
18
  "module": "./index.esm.js",