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 ac2bc4d commit 9c430caCopy full SHA for 9c430ca
features/step_definitions/cli_steps.ts
@@ -54,7 +54,7 @@ When(
54
{ timeout: 10000 },
55
async function (this: World) {
56
const formats = ['html:html.out', 'json:json.out']
57
- let args:string = ' ' + formats.map((f) => `--format ${f}`).join(' ')
+ const args:string = formats.map((f) => `--format ${f}`).join(' ')
58
const renderedArgs = Mustache.render(args, this)
59
const stringArgs = stringArgv(renderedArgs)
60
return await this.run(this.localExecutablePath, stringArgs)
0 commit comments