@dev-blinq/cucumber_client 1.0.1437-dev → 1.0.1439-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.
@@ -834,12 +834,17 @@ export class BVTRecorder {
834
834
  TEMP_RUN: true,
835
835
  REPORT_FOLDER: this.bvtContext.reportFolder,
836
836
  BLINQ_ENV: this.envName,
837
- STORE_DETAILED_NETWORK_DATA: listenNetwork ? "true" : "false",
837
+ //STORE_DETAILED_NETWORK_DATA: listenNetwork ? "true" : "false",
838
838
  DEBUG: "blinq:route",
839
839
  };
840
840
 
841
841
  this.bvtContext.navigate = true;
842
842
  this.bvtContext.loadedRoutes = null;
843
+ if (listenNetwork) {
844
+ process.env.STORE_DETAILED_NETWORK_DATA = "true";
845
+ } else {
846
+ process.env.STORE_DETAILED_NETWORK_DATA = "false";
847
+ }
843
848
  for (const [key, value] of Object.entries(_env)) {
844
849
  process.env[key] = value;
845
850
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dev-blinq/cucumber_client",
3
- "version": "1.0.1437-dev",
3
+ "version": "1.0.1439-dev",
4
4
  "description": " ",
5
5
  "main": "bin/index.js",
6
6
  "types": "bin/index.d.ts",