I'm trying to run a specific Behat scenario from the command line, here's what I'm doing:
$ bin/behat features/features/baseline.feature:3
However this isn't picking up the scenario.
If I run
bin/behat features/features/baseline.feature
I can get the entire feature file to run.
Here's what the file looks like -- the scenario I'm trying to run is on line 3 in my text editor:
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"
bin/behat features/file.feature:123
where 123 is the line number of the line likeScenario: Clear cache
. – Luzern