@centreon/js-config 24.10.19 → 24.10.20

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.
@@ -188,7 +188,9 @@ export default (on: Cypress.PluginEvents): void => {
188
188
  name,
189
189
  portBindings = []
190
190
  }: StartContainerProps) => {
191
- let container = await new GenericContainer(image).withName(name);
191
+ let container = await new GenericContainer(image)
192
+ .withName(name)
193
+ .withAddedCapabilities('SYS_NICE');
192
194
 
193
195
  portBindings.forEach(({ source, destination }) => {
194
196
  container = container.withExposedPorts({
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": "24.10.19",
4
+ "version": "24.10.20",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "git+https://github.com/centreon/centreon.git"