@centreon/js-config 25.11.3 → 26.1.0
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.
|
@@ -86,8 +86,11 @@ export default ({
|
|
|
86
86
|
runMode: 2
|
|
87
87
|
},
|
|
88
88
|
screenshotsFolder: `${resultsFolder}/screenshots`,
|
|
89
|
-
|
|
90
|
-
|
|
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