如何运行特定的 Behat 方案
我正在尝试从命令行运行特定的Behat场景,以下是我正在做的:
$ bin/behat features/features/baseline.feature:3
但是,这并不是在拾取场景。
如果我跑步
bin/behat features/features/baseline.feature
我可以让整个功能文件运行。
下面是该文件的外观 - 我尝试运行的方案位于文本编辑器中的第 3 行:
Feature:
@api
Scenario: Clear cache
Given the cache has been cleared
When I am on the homepage
Then I should get a "200" HTTP response
Scenario:
Given I am not logged in
When I am on the homepage
Then I should see the text "We love our users"