cucumber command that will print out just the feature and scenario names
Is there a cucumber command that will print out just the feature info and the scenario names?
I recently began a project and want to print out the cucumber features and scenarios I开发者_高级运维 wrote to describe the scope of the project and get it confirmed with the client.
Do you mean cucumber -d
?
$ cucumber -h
-d, --dry-run Invokes formatters without executing the steps.
This also omits the loading of your support/env.rb file if it exists.
Implies --no-snippets.
Implies --dry-run --formatter pretty.
精彩评论