Skip to content

Commit 9c430ca

Browse files
committed
Fixing linting issues
1 parent ac2bc4d commit 9c430ca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

features/step_definitions/cli_steps.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ When(
5454
{ timeout: 10000 },
5555
async function (this: World) {
5656
const formats = ['html:html.out', 'json:json.out']
57-
let args:string = ' ' + formats.map((f) => `--format ${f}`).join(' ')
57+
const args:string = formats.map((f) => `--format ${f}`).join(' ')
5858
const renderedArgs = Mustache.render(args, this)
5959
const stringArgs = stringArgv(renderedArgs)
6060
return await this.run(this.localExecutablePath, stringArgs)

0 commit comments

Comments
 (0)