Skip to content

Commit

Permalink
Fix linting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
aurelien-reeves committed Dec 28, 2021
1 parent 03183b0 commit 2ce99f4
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions features/step_definitions/cli_steps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,9 @@ When('my env includes {string}', function (this: World, envString: string) {
this.sharedEnv = this.parseEnvString(envString)
})

When(
'I run cucumber-js',
{ timeout: 10000 },
async function (this: World) {
return await this.run(this.localExecutablePath, [])
}
)
When('I run cucumber-js', { timeout: 10000 }, async function (this: World) {
return await this.run(this.localExecutablePath, [])
})

When(
'I run cucumber-js with `{}`',
Expand Down

0 comments on commit 2ce99f4

Please sign in to comment.