Adam Artajew
Adam Artajew
As a workaround, you can load Cucumber configuration (together with `worldParameters`) outside of steps using API: ``` import { loadConfiguration } from '@cucumber/cucumber/api' import ArgvParser from '@cucumber/cucumber/lib/configuration/argv_parser' // store original...
Setting this helped on macOS in my case: ``` sudo xcode-select -s /Library/Developer/CommandLineTools ```
Same here - any chance to merge this?
You can override default plugin settings in `build.sbt` file with i.e.: ``` Seq(GitHooks.globalSettings *) gitHooksDir := Some(file("../.git/hooks")) ``` If you want to write hooks on each compile use: ``` (Compile...