Ok, so I am working on a project using IntelliJ and trying to take advantage of its cucumber functionality. I did not work with the java flavor of cucumber, but IntelliJ seems to want step definition files in a specific place compared to function files.
I found this: how to locate the step definitions for a cucumber in intelliJ 12 and other sources that indicated to me that I was able to add the βglueβ property of mine which tell cuke that package to find the step file. Therefore, I am at a point where I can run my tests through IDEA. BUT I need to set this every time I run a new test, since Ctrl + Alt + F10 or right-clicking + the start test does not start the test using this flag. In addition, ide support is screwed, since IDEA does not know where the stages are, it is not auto-negotiated, or Ctrl + Click proceeds to the steps.
Is there a way that the IDEA project always looks for steps in this package both when starting tests and for its automatic completion?
source share