You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While writing feature file Feature: as a text gives linting error, since it is not used as a keyword it should not give error as There should be only one Feature: keyword in a feature file
For example, the below feature file should not give linting error since Feature: is used as a text:
Feature: Feature name This is a Feature: description section
The text was updated successfully, but these errors were encountered:
Maybe any line that starts with (whitespace)Feature: should be reported by the linter:
Feature: upload files
As a regular user
I want to upload files
So that they will be available on multiple of my devices
Scenario: upload a file
Given the user has been created
When the user uploads a file
Then the file should exist on the server
Feature: download files
Scenario: download a file
...
If someone pastes multiple features into one file, that is not allowed.
Description
While writing feature file
Feature:
as a text gives linting error, since it is not used as a keyword it should not give error asThere should be only one Feature: keyword in a feature file
For example, the below feature file should not give linting error since
Feature:
is used as a text:The text was updated successfully, but these errors were encountered: