kaocha-cucumber
kaocha-cucumber copied to clipboard
Cucumber support for Kaocha
I don't think people realize you can do this, particularly people like me who are unfamiliar with Gherkin syntax due to never having used the original Ruby version of Cucumber.
Given that you support `@` tags in feature files, is there currently a way to filter which tests Kaocha runs using those tags?
I've been trying to work with cucumber from the REPL, using `kaocha.repl/run`. I find that merely reloading the glue namespaces is not enough to refresh the glue code from `cucumber-jvm-clojure`'s...
Hi 👋 This lib has been really useful for us these past months. We've recently wanted to use the `Rule` keyword that seems to be supported by Gherkin 6. Is...
Hi, I thought I'd be able to get json output with cucumber jvm by using system props: ``` clojure -J-Dcucumber.options="-p json:target/x.json" -Sdeps '{:deps {lambdaisland/kaocha {:mvn/version "0.0-418"} lambdaisland/kaocha-cucumber {:mvn/version "0.0-46"}}}' -m...
Would there be interest in splitting the `lambdaisland/cucumber` portion of this library into a separate project? Or maybe including a `deps.edn` in the `src/lambdaisland/cucumber` directory so I can rely on...
From the [Cucumber](https://cucumber.io/docs/cucumber/step-definitions) docs: "A step definition's expression can either be a [Regular Expression](https://en.wikipedia.org/wiki/Regular_expression) or a [Cucumber Expression](https://cucumber.io/docs/cucumber/cucumber-expressions). The examples in this section use Cucumber Expressions." However, this is a...
It's certainly common enough for my feature files to use :keywords as well as "strings" for Clojure/script code bases, which is very easy to implement locally in `tests.edn` by doing:...