slnodejs 6.1.530 → 6.1.533

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.
@@ -28969,7 +28969,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
28969
28969
  "use strict";
28970
28970
  Object.defineProperty(exports, "__esModule", { value: true });
28971
28971
  exports.SL_AGENT_TYPE = exports.SL_AGENT_VERSION = void 0;
28972
- exports.SL_AGENT_VERSION = '6.1.530';
28972
+ exports.SL_AGENT_VERSION = '6.1.533';
28973
28973
  exports.SL_AGENT_TYPE = 'browser';
28974
28974
  });
28975
28975
 
@@ -36709,6 +36709,11 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
36709
36709
  class StateTracker extends events.EventEmitter {
36710
36710
  constructor(cfg, configProcess, checkTestStatusWatchdog, backendProxy, logger) {
36711
36711
  super();
36712
+ this.cfg = cfg;
36713
+ this.configProcess = configProcess;
36714
+ this.checkTestStatusWatchdog = checkTestStatusWatchdog;
36715
+ this.backendProxy = backendProxy;
36716
+ this.logger = logger;
36712
36717
  this.currentTestIdentifier = null;
36713
36718
  this.isRunning = false;
36714
36719
  this._openExecutionFoundOnce = false;
@@ -36717,11 +36722,6 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
36717
36722
  validation_utils_1.ValidationUtils.verifyNotNullOrEmpty(checkTestStatusWatchdog, 'watchdog');
36718
36723
  validation_utils_1.ValidationUtils.verifyNotNullOrEmpty(backendProxy, 'backendProxy');
36719
36724
  validation_utils_1.ValidationUtils.verifyNotNullOrEmpty(logger, 'logger');
36720
- this.cfg = cfg;
36721
- this.configProcess = configProcess;
36722
- this.checkTestStatusWatchdog = checkTestStatusWatchdog;
36723
- this.backendProxy = backendProxy;
36724
- this.logger = logger;
36725
36725
  if (this.cfg.useInitialColor.value && this.currentTestIdentifier == null) {
36726
36726
  this.switchToAnonFootprints();
36727
36727
  }