我可以重命名 Cucumber 的 step_definitions 文件夹吗?
Cucumber 非常适合行为驱动开发,但我想使用较短的目录名称。特征/步骤定义?为什么不是功能/步骤?我想有某种方法可以在 cucumber.yml 文件中更改此设置,但我没有找到可以更改此设置的 .yml 文件。
Cucumber works great for Behavior Driven Development, but I'd like to use shorter directory names. features/step_definitions? Why not features/steps? I suppose there is some way to change this in the cucumber.yml file, but I haven't had any luck finding a .yml file that does.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你不需要做任何事情。 Cucumber 在“features”的子目录中搜索步骤定义,因此 features/steps 的工作方式与 features/step_definitions 相同。
You don't need to do anything. Cucumber searches for step definitions in subdirectories of 'features', so features/steps works the same as features/step_definitions.