@dev-blinq/cucumber_client 1.0.1612-dev → 1.0.1613-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.
|
@@ -200,7 +200,7 @@ export class BVTRecorder {
|
|
|
200
200
|
this.workspaceService = new PublishService(this.TOKEN);
|
|
201
201
|
this.pageSet = new Set();
|
|
202
202
|
this.lastKnownUrlPath = "";
|
|
203
|
-
this.world = { attach: () => {
|
|
203
|
+
this.world = { attach: () => {} };
|
|
204
204
|
this.shouldTakeScreenshot = true;
|
|
205
205
|
this.watcher = null;
|
|
206
206
|
this.networkEventsFolder = path.join(tmpdir(), "blinq_network_events");
|
|
@@ -322,7 +322,7 @@ export class BVTRecorder {
|
|
|
322
322
|
}
|
|
323
323
|
|
|
324
324
|
// this.stepRunner.setRemoteDebugPort(this.#remoteDebuggerPort);
|
|
325
|
-
this.world = { attach: () => {
|
|
325
|
+
this.world = { attach: () => {} };
|
|
326
326
|
|
|
327
327
|
const ai_config_file = path.join(this.projectDir, "ai_config.json");
|
|
328
328
|
let ai_config = {};
|
|
@@ -824,7 +824,7 @@ export class BVTRecorder {
|
|
|
824
824
|
}
|
|
825
825
|
async closeBrowser() {
|
|
826
826
|
delete process.env.TEMP_RUN;
|
|
827
|
-
await this.watcher.close().then(() => {
|
|
827
|
+
await this.watcher.close().then(() => {});
|
|
828
828
|
this.watcher = null;
|
|
829
829
|
this.previousIndex = null;
|
|
830
830
|
this.previousHistoryLength = null;
|