@dev-blinq/cucumber_client 1.0.1575-dev → 1.0.1577-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.
|
@@ -311,6 +311,9 @@ async function BVTRecorderInit({ envName, projectDir, roomId, TOKEN, socket = nu
|
|
|
311
311
|
console.log("Received browserUI.selectTab", input);
|
|
312
312
|
await recorder.selectTab(input);
|
|
313
313
|
},
|
|
314
|
+
"recorderWindow.cleanup": async (input) => {
|
|
315
|
+
return recorder.cleanup(input);
|
|
316
|
+
}
|
|
314
317
|
});
|
|
315
318
|
|
|
316
319
|
socket.on("targetBrowser.command.event", async (input) => {
|
package/bin/index.js
CHANGED
|
@@ -16,3 +16,6 @@ export * from "./client/profiler.js";
|
|
|
16
16
|
export * from "./client/code_cleanup/utils.js";
|
|
17
17
|
export * from "./client/code_cleanup/find_step_definition_references.js";
|
|
18
18
|
export * from "./client/recorderv3/bvt_init.js";
|
|
19
|
+
|
|
20
|
+
export * from "./client/recorderv3/step_utils.js";
|
|
21
|
+
export * from "./client/recorderv3/update_feature.js";
|