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