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