@dev-blinq/cucumber_client 1.0.1418-stage → 1.0.1419-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.
|
@@ -297,7 +297,6 @@ function updateExistingScenario({
|
|
|
297
297
|
scenarioName: newScenarioName,
|
|
298
298
|
scenarioContent: newScenarioContent,
|
|
299
299
|
}) {
|
|
300
|
-
console.log("🟩🟩🟩🟩🟩🟩🟩🟩🟩 Previous feature file content", featureFileContent);
|
|
301
300
|
const featureFileObject = GherkinToObject(featureFileContent);
|
|
302
301
|
if (featureFileObject.error) return "error";
|
|
303
302
|
|
|
@@ -345,7 +344,7 @@ function updateExistingScenario({
|
|
|
345
344
|
}
|
|
346
345
|
results.push("");
|
|
347
346
|
}
|
|
348
|
-
|
|
347
|
+
|
|
349
348
|
return results.join("\n");
|
|
350
349
|
}
|
|
351
350
|
|