@centreon/js-config 24.5.2 → 24.5.4
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/cypress/e2e/commands.ts +1 -1
- package/package.json +1 -1
- package/rspack/base/index.js +1 -1
package/cypress/e2e/commands.ts
CHANGED
|
@@ -747,7 +747,7 @@ Cypress.Commands.add(
|
|
|
747
747
|
|
|
748
748
|
Cypress.Commands.add('getTimeFromHeader', (): Cypress.Chainable => {
|
|
749
749
|
return cy
|
|
750
|
-
.get('header div[data-cy="clock"]', { timeout:
|
|
750
|
+
.get('header div[data-cy="clock"]', { timeout: 20000 })
|
|
751
751
|
.should('be.visible')
|
|
752
752
|
.then(($time) => {
|
|
753
753
|
const headerTime = $time.children()[1].textContent;
|
package/package.json
CHANGED