@centreon/js-config 24.5.4 → 24.5.5
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/plugins.ts +2 -2
- package/package.json +1 -1
package/cypress/e2e/plugins.ts
CHANGED
|
@@ -23,12 +23,12 @@ export default (
|
|
|
23
23
|
launchOptions.args.push('--hide-scrollbars');
|
|
24
24
|
launchOptions.args.push('--mute-audio');
|
|
25
25
|
|
|
26
|
-
launchOptions.args.push(`--window-size=${width},${height}`);
|
|
27
|
-
|
|
28
26
|
// force screen to be non-retina and just use our given resolution
|
|
29
27
|
launchOptions.args.push('--force-device-scale-factor=1');
|
|
30
28
|
}
|
|
31
29
|
|
|
30
|
+
launchOptions.args.push(`--window-size=${width},${height}`);
|
|
31
|
+
|
|
32
32
|
return launchOptions;
|
|
33
33
|
});
|
|
34
34
|
|
package/package.json
CHANGED