@dev-blinq/cucumber_client 1.0.1615-dev → 1.0.1617-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.
|
@@ -1084,7 +1084,7 @@ export class BVTRecorder {
|
|
|
1084
1084
|
REPORT_FOLDER: this.bvtContext.reportFolder,
|
|
1085
1085
|
BLINQ_ENV: this.envName,
|
|
1086
1086
|
DEBUG: "blinq:route",
|
|
1087
|
-
BVT_TEMP_SNAPSHOTS_FOLDER: path.join(this.tempSnapshotsFolder, env),
|
|
1087
|
+
BVT_TEMP_SNAPSHOTS_FOLDER: step.isImplemented ? path.join(this.tempSnapshotsFolder, env) : undefined,
|
|
1088
1088
|
};
|
|
1089
1089
|
|
|
1090
1090
|
this.bvtContext.navigate = true;
|
|
@@ -1142,7 +1142,7 @@ export class BVTRecorder {
|
|
|
1142
1142
|
branch,
|
|
1143
1143
|
isEditing,
|
|
1144
1144
|
projectId: path.basename(this.projectDir),
|
|
1145
|
-
env,
|
|
1145
|
+
env: env ?? this.envName,
|
|
1146
1146
|
});
|
|
1147
1147
|
if (res.success) {
|
|
1148
1148
|
await this.cleanup({ tags: scenario.tags });
|