我正在和Vim和Behat合作。当我添加新场景时,或者场景失败时,我在vim
中键入此命令:!bin/behat %:42
当我将光标放在功能的场景中时,是否可以创建一个快捷方式,以便为此场景运行?
42 Scenario: run behat scenario with shortcut
43 Given my cursor is on a scenario
44 Then I can run behat just for this one
45 And save my time
答案 0 :(得分:0)
当我使用symfony时,我可以这样做:
bin/behat --profile=your_profile_name YourFeatureFileName.feature:42
所以只有第42行的场景才会运行。