@dev-blinq/cucumber_client 1.0.1370-dev → 1.0.1372-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.
|
@@ -215,7 +215,7 @@ export class BVTRecorder {
|
|
|
215
215
|
this.pageSet = new Set();
|
|
216
216
|
this.lastKnownUrlPath = "";
|
|
217
217
|
// TODO: what is world?
|
|
218
|
-
this.world = { attach: () => {
|
|
218
|
+
this.world = { attach: () => {} };
|
|
219
219
|
this.shouldTakeScreenshot = true;
|
|
220
220
|
this.watcher = null;
|
|
221
221
|
}
|
|
@@ -323,7 +323,7 @@ export class BVTRecorder {
|
|
|
323
323
|
process.env.CDP_LISTEN_PORT = this.#remoteDebuggerPort;
|
|
324
324
|
|
|
325
325
|
this.stepRunner.setRemoteDebugPort(this.#remoteDebuggerPort);
|
|
326
|
-
this.world = { attach: () => {
|
|
326
|
+
this.world = { attach: () => {} };
|
|
327
327
|
|
|
328
328
|
const ai_config_file = path.join(this.projectDir, "ai_config.json");
|
|
329
329
|
let ai_config = {};
|
|
@@ -731,7 +731,7 @@ export class BVTRecorder {
|
|
|
731
731
|
}
|
|
732
732
|
async closeBrowser() {
|
|
733
733
|
delete process.env.TEMP_RUN;
|
|
734
|
-
await this.watcher.close().then(() => {
|
|
734
|
+
await this.watcher.close().then(() => {});
|
|
735
735
|
this.watcher = null;
|
|
736
736
|
this.previousIndex = null;
|
|
737
737
|
this.previousHistoryLength = null;
|
|
@@ -871,6 +871,7 @@ export class BVTRecorder {
|
|
|
871
871
|
delete process.env[key];
|
|
872
872
|
}
|
|
873
873
|
this.bvtContext.navigate = false;
|
|
874
|
+
this.bvtContext.web.abortedExecution = false;
|
|
874
875
|
}
|
|
875
876
|
}
|
|
876
877
|
async saveScenario({ scenario, featureName, override, isSingleStep }) {
|
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.1372-dev",
|
|
4
4
|
"description": " ",
|
|
5
5
|
"main": "bin/index.js",
|
|
6
6
|
"types": "bin/index.d.ts",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"@cucumber/tag-expressions": "^6.1.1",
|
|
33
33
|
"@dev-blinq/cucumber-js": "1.0.180-dev",
|
|
34
34
|
"@faker-js/faker": "^8.1.0",
|
|
35
|
-
"automation_model": "1.0.
|
|
35
|
+
"automation_model": "1.0.807-dev",
|
|
36
36
|
"axios": "^1.7.4",
|
|
37
37
|
"chokidar": "^3.6.0",
|
|
38
38
|
"create-require": "^1.1.1",
|