Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cli: use kebab-case for --retry-tag-filter arg #1293

Merged
merged 14 commits into from
Mar 17, 2020
Prev Previous commit
Next Next commit
merge from master
davidjgoss committed Mar 7, 2020
commit 7ded1ce21a493b52f84e2ab3713958a36439cb67
13 changes: 12 additions & 1 deletion src/cli/index.ts
Original file line number Diff line number Diff line change
@@ -23,6 +23,7 @@ import Gherkin from 'gherkin'
import { ISupportCodeLibrary } from '../support_code_library_builder/types'
import { IParsedArgvFormatOptions } from './argv_parser'
import { Console } from 'console'
import { WriteStream } from 'fs'

const { incrementing, uuid } = IdGenerator

@@ -51,7 +52,17 @@ export default class Cli {
private readonly stdout: IFormatterStream
private readonly console: Console

constructor({ argv, cwd, stdout, stderr }) {
constructor({
argv,
cwd,
stdout,
stderr,
}: {
argv: string[]
cwd: string
stdout: IFormatterStream
stderr: IFormatterStream
}) {
this.argv = argv
this.cwd = cwd
this.stdout = stdout
You are viewing a condensed version of this merge commit. You can view the full changes here.