@dev-blinq/cucumber_client 1.0.1426-dev → 1.0.1428-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.
|
@@ -14,6 +14,7 @@ import { escapeString, getExamplesContent } from "./update_feature.js";
|
|
|
14
14
|
import fs from "fs";
|
|
15
15
|
import { locateDefinitionPath } from "../cucumber/steps_definitions.js";
|
|
16
16
|
import { tmpdir } from "os";
|
|
17
|
+
import socketLogger from "../utils/socket_logger.js";
|
|
17
18
|
|
|
18
19
|
export class BVTStepRunner {
|
|
19
20
|
#currentStepController = null;
|
|
@@ -59,6 +60,7 @@ export class BVTStepRunner {
|
|
|
59
60
|
}
|
|
60
61
|
this.bvtContext.web.pausedCmd = null;
|
|
61
62
|
} else {
|
|
63
|
+
socketLogger.warn(`bvtContext.web.pausedCmd is null`);
|
|
62
64
|
if (this.liveExecutionMap.has(cmdId)) {
|
|
63
65
|
const { resolve } = this.liveExecutionMap.get(cmdId);
|
|
64
66
|
if (resolve) {
|
|
@@ -66,6 +68,7 @@ export class BVTStepRunner {
|
|
|
66
68
|
}
|
|
67
69
|
} else {
|
|
68
70
|
console.warn(`No paused command found for cmdId: ${cmdId}`);
|
|
71
|
+
socketLogger.error(`No paused command found for cmdId: ${cmdId}`);
|
|
69
72
|
}
|
|
70
73
|
}
|
|
71
74
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dev-blinq/cucumber_client",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1428-dev",
|
|
4
4
|
"description": " ",
|
|
5
5
|
"main": "bin/index.js",
|
|
6
6
|
"types": "bin/index.d.ts",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"@cucumber/tag-expressions": "^6.1.1",
|
|
40
40
|
"@dev-blinq/cucumber-js": "1.0.184-dev",
|
|
41
41
|
"@faker-js/faker": "^8.1.0",
|
|
42
|
-
"automation_model": "1.0.
|
|
42
|
+
"automation_model": "1.0.827-dev",
|
|
43
43
|
"axios": "^1.7.4",
|
|
44
44
|
"chokidar": "^3.6.0",
|
|
45
45
|
"create-require": "^1.1.1",
|