@dev-blinq/cucumber_client 1.0.1259-stage → 1.0.1260-stage

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