@dev-blinq/cucumber_client 1.0.1424-dev → 1.0.1425-dev

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.
@@ -44,7 +44,10 @@ export class BVTStepRunner {
44
44
 
45
45
  async pauseExecution(cmdId) {
46
46
  if (this.bvtContext.web) {
47
- this.bvtContext.web.pausedCmd = this.liveExecutionMap.get(cmdId);
47
+ this.bvtContext.web.pausedCmd = {
48
+ id: cmdId,
49
+ ...this.liveExecutionMap.get(cmdId),
50
+ };
48
51
  }
49
52
  }
50
53
 
@@ -258,8 +261,8 @@ export class BVTStepRunner {
258
261
 
259
262
  for (const cmdId of cmdIDs) {
260
263
  this.liveExecutionMap.set(cmdId, {
261
- resolve: () => { },
262
- reject: () => { },
264
+ resolve: () => {},
265
+ reject: () => {},
263
266
  });
264
267
  }
265
268
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dev-blinq/cucumber_client",
3
- "version": "1.0.1424-dev",
3
+ "version": "1.0.1425-dev",
4
4
  "description": " ",
5
5
  "main": "bin/index.js",
6
6
  "types": "bin/index.d.ts",