We are using Cucumber JVM for Scala and as the application grows it would be nice to cucumber-guice in the picture as well.
The problem is that I can't see any useable examples/tutorials/documentation on how to do it.
I do have a working @RunWith(classOf[Cucumber]) RunCukesTest class, which kicks off, finds the .feature files, and the StepDefinition classes. The problem is that this Cucumber class instantiates step definitions without Guice, and all my injections stay null, causing my tests to fail.
Maybe there is a way to configure Cucumber to use GuiceFactory and cucumber-guice.properties like in Configuring cucumber-guice?