@dev-blinq/cucumber_client 1.0.1611-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.
|
@@ -978,7 +978,7 @@ export class BVTRecorder {
|
|
|
978
978
|
this.bvtContext.navigate = false;
|
|
979
979
|
}
|
|
980
980
|
}
|
|
981
|
-
async saveScenario({ scenario, featureName, override, isSingleStep, branch, isEditing }) {
|
|
981
|
+
async saveScenario({ scenario, featureName, override, isSingleStep, branch, isEditing, env }) {
|
|
982
982
|
// await updateStepDefinitions({ scenario, featureName, projectDir: this.projectDir }); // updates mjs files
|
|
983
983
|
// if (!isSingleStep) await updateFeatureFile({ featureName, scenario, override, projectDir: this.projectDir }); // updates gherkin files
|
|
984
984
|
const res = await this.workspaceService.saveScenario({
|
|
@@ -989,6 +989,7 @@ export class BVTRecorder {
|
|
|
989
989
|
branch,
|
|
990
990
|
isEditing,
|
|
991
991
|
projectId: path.basename(this.projectDir),
|
|
992
|
+
env,
|
|
992
993
|
});
|
|
993
994
|
if (res.success) {
|
|
994
995
|
await this.cleanup({ tags: scenario.tags });
|