what order do cucumber tests get run
Feature files are running in alphabetically order so there is a one way to execute all scenario in a single file like "EndToEnd.feature" where you can specify all scenarios with tags and execute from Runner. Hope it will help you.
According to Justin Ko's website, order of execution is determined as follows:
- Alphabetically by feature file directory
- Alphabetically by feature file name
- Order of scenarios within the feature file