suitest-js-api 4.0.11 → 4.0.12

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.
@@ -14,7 +14,7 @@ const {invalidInputMessage, usingAppConfig, usedAppConfig, useAppConfigOverrides
14
14
  * @param {suitest.ConfigOverride} [configOverride] - an optional override of the configuration
15
15
  * @returns {Promise<void>}
16
16
  */
17
- async function setAppConfig({appContext, authContext, webSockets, logger}, configId, configOverride = {}) {
17
+ async function setAppConfig({appContext, authContext, webSockets, logger, config}, configId, configOverride = {}) {
18
18
  // validate input
19
19
  validate(validators.NON_EMPTY_STRING, configId, invalidInputMessage(setAppConfig.name, 'Config id'));
20
20
  validate(validators.CONFIG_OVERRIDE, configOverride, invalidInputMessage(setAppConfig.name, 'Config override'));
@@ -26,6 +26,7 @@ async function setAppConfig({appContext, authContext, webSockets, logger}, confi
26
26
  type: wsContentTypes.selectConfiguration,
27
27
  configId,
28
28
  configOverride,
29
+ includeChangelist: config.includeChangelist,
29
30
  }, setAppConfig.name);
30
31
 
31
32
  // make ws request
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "suitest-js-api",
3
- "version": "4.0.11",
3
+ "version": "4.0.12",
4
4
  "main": "index.js",
5
5
  "repository": "github:SuitestAutomation/suitest-js-api",
6
6
  "author": "Suitest <hello@suite.st>",