@centreon/js-config 26.5.0 → 26.5.2
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 +2 -2
- package/cypress/e2e/tasks.ts +1 -1
- package/package.json +1 -1
package/cypress/e2e/commands.ts
CHANGED
|
@@ -546,11 +546,11 @@ Cypress.Commands.add(
|
|
|
546
546
|
composeFile,
|
|
547
547
|
databaseImage = Cypress.env('DATABASE_IMAGE'),
|
|
548
548
|
moduleName = 'centreon-web',
|
|
549
|
-
openidImage = `
|
|
549
|
+
openidImage = `ghcr.io/centreon/centreon/keycloak:${Cypress.env(
|
|
550
550
|
'OPENID_IMAGE_VERSION'
|
|
551
551
|
)}`,
|
|
552
552
|
profiles = [],
|
|
553
|
-
samlImage = `
|
|
553
|
+
samlImage = `ghcr.io/centreon/centreon/keycloak:${Cypress.env(
|
|
554
554
|
'SAML_IMAGE_VERSION'
|
|
555
555
|
)}`,
|
|
556
556
|
useSlim = true,
|
package/cypress/e2e/tasks.ts
CHANGED
|
@@ -256,7 +256,7 @@ export default (on: Cypress.PluginEvents): void => {
|
|
|
256
256
|
},
|
|
257
257
|
stopContainers: async () => {
|
|
258
258
|
if (dockerEnvironment !== null) {
|
|
259
|
-
await dockerEnvironment.down();
|
|
259
|
+
await dockerEnvironment.down({ timeout: 0 });
|
|
260
260
|
|
|
261
261
|
dockerEnvironment = null;
|
|
262
262
|
}
|