@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.
- package/cypress/e2e/commands.ts +5 -1
- package/package.json +1 -1
package/cypress/e2e/commands.ts
CHANGED
|
@@ -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(
|
|
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