@centreon/js-config 25.11.4 → 26.1.1

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.
@@ -259,7 +259,7 @@ Cypress.Commands.add(
259
259
  cy.getByLabel({ label: 'Alias', tag: 'input' }).type(
260
260
  `{selectAll}{backspace}${credential.login}`
261
261
  );
262
- cy.getByLabel({ label: 'Password', tag: 'input' }).type(
262
+ cy.get('input[type="password"]').type(
263
263
  `{selectAll}{backspace}${credential.password}`
264
264
  );
265
265
  })
@@ -86,8 +86,11 @@ export default ({
86
86
  runMode: 2
87
87
  },
88
88
  screenshotsFolder: `${resultsFolder}/screenshots`,
89
- video: isDevelopment,
90
- videoCompression: 0,
89
+ // Ensure previous run assets are removed to avoid accumulation
90
+ trashAssetsBeforeRuns: true,
91
+ video: true,
92
+ // Keep files small in CI, but fast locally
93
+ videoCompression: process.env.CI ? 32 : 0,
91
94
  videosFolder: `${resultsFolder}/videos`,
92
95
  viewportHeight: 1080,
93
96
  viewportWidth: 1920
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": "25.11.4",
4
+ "version": "26.1.1",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "git+https://github.com/centreon/centreon-frontend.git"