@nsshunt/stsrunnerframework 1.0.126 → 1.0.128

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/README.md CHANGED
@@ -75,7 +75,6 @@ parentPort?.on('message', (data: any) => {
75
75
  const { command, payload } = data.data;
76
76
  if (command === eIWMessageCommands.MessagePort) {
77
77
  payload.port.on('message', (data: any) => {
78
- // const payloadMessage: IIWMessagePayload = data.data as IIWMessagePayload; // browser version
79
78
  worker.ProcessMessage(data.data); // browser version
80
79
  });
81
80
  worker.ProcessMessage(data.data);
@@ -126,7 +125,6 @@ onmessage = async function(data: any) {
126
125
  const { command, payload } = data.data;
127
126
  if (command === eIWMessageCommands.MessagePort) {
128
127
  payload.port.on('message', (data: any) => {
129
- // const payloadMessage: IIWMessagePayload = data.data as IIWMessagePayload; // browser version
130
128
  worker.ProcessMessage(data.data); // browser version
131
129
  });
132
130
  worker.ProcessMessage(data.data);
@@ -162,7 +160,6 @@ export class WorkerTestCases extends WorkerInstance {
162
160
  if (isNode) {
163
161
  this.ProcessMessage(data);
164
162
  } else {
165
- // const payloadMessage: IIWMessagePayload = data.data as IIWMessagePayload; // browser version
166
163
  this.ProcessMessage(data.data); // browser version
167
164
  }
168
165
  });
@@ -19,9 +19,6 @@ import require$$0$4 from "os";
19
19
  import require$$1 from "path";
20
20
  import require$$0$5 from "http";
21
21
  import require$$1$1 from "https";
22
- const URI_BASE_VUEUTILS = "/";
23
- const STS_RF_RES_PREFIX = "STS_R_RF_";
24
- const STS_RF_RES_ENT_PREFIX = "STS_RE_RF_";
25
22
  var eIWMessageCommands = /* @__PURE__ */ ((eIWMessageCommands2) => {
26
23
  eIWMessageCommands2["InstrumentTelemetry"] = "__STS__InstrumentTelemetry";
27
24
  eIWMessageCommands2["MessagePort"] = "__STS__MessagePort";
@@ -15405,9 +15402,6 @@ export {
15405
15402
  PublishMessageCommandsTestRunner,
15406
15403
  STSRunnerFrameworkTransportLoggerWinston,
15407
15404
  STSWorkerManager,
15408
- STS_RF_RES_ENT_PREFIX,
15409
- STS_RF_RES_PREFIX,
15410
- URI_BASE_VUEUTILS,
15411
15405
  WorkerInstance,
15412
15406
  eIWMessageCommands
15413
15407
  };