We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 107bb8e commit d623127Copy full SHA for d623127
bdd/step-definitions/e2e/cli.ts
@@ -559,15 +559,15 @@ Then("I should see exitCode: {string}", async function (
559
}
560
});
561
562
-Then("Instance info should contain provided parameters", async function (
+Then("Instance info should contain provided parameters in {string}", async function (
563
this: CustomWorld
564
) {
565
const res = this.cliResources;
566
567
if (res.stdio) {
568
try {
569
const expected = await fs.promises
570
- .readFile("../bdd/data/seq-startup-config.json", "utf8")
+ .readFile(`../bdd/data/${file}`, "utf8")
571
.then(JSON.parse);
572
573
const received = res.stdio[0] ? JSON.parse(res.stdio[0]) : null;
0 commit comments