You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Initial attempts at working with Quke in a project seem to indicate that any arguments specified are not being passed through to Cucumber, or if they are its being done in such a way that Cucumber doesn't acknowledge it.
The text was updated successfully, but these errors were encountered:
Some more info. They are passed but it depends what your passing. If for example you are just trying to run a single feature, you would expect this to only run the search.feature
bundle exec quke features/search.feature
In Quke however this is not working, and the whole folder is being run. Arguments like this though are being passed through and are working correctly
bundle exec quke --tags @focus
The problem is we always pass in the 'features' folder (or whatever its been set as in config) so in fact trying to just run a single feature from the command line is overridden by this behaviour.
So at the moment if you want to control which features get run, you must rely on tags rather than trying to specify it through the command line.
v0.2.3
Initial attempts at working with Quke in a project seem to indicate that any arguments specified are not being passed through to Cucumber, or if they are its being done in such a way that Cucumber doesn't acknowledge it.
The text was updated successfully, but these errors were encountered: