@centreon/js-config 23.10.38 → 23.10.39

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.
@@ -229,7 +229,11 @@ interface StartContainerProps {
229
229
  Cypress.Commands.add(
230
230
  'startContainer',
231
231
  ({ name, image, portBindings }: StartContainerProps): Cypress.Chainable => {
232
- return cy.task('startContainer', { image, name, portBindings });
232
+ return cy.task(
233
+ 'startContainer',
234
+ { image, name, portBindings },
235
+ { timeout: 600000 } // 10 minutes because docker pull can be very slow
236
+ );
233
237
  }
234
238
  );
235
239
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@centreon/js-config",
3
3
  "description": "Centreon Frontend shared build configuration",
4
- "version": "23.10.38",
4
+ "version": "23.10.39",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "git+https://github.com/centreon/centreon-frontend.git"