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
When I run below command through “scripts”, it takes correct environment but it runs all the scenarios and completely ignore given tag.
"npx cypress-tags run -e TAGS="@smoke" --browser chrome --env env=qa"
after removing --env env=qa - it works fine.
our requirement is to run scenarios in different environments by switching it by command.
Can someone please look into it?
The text was updated successfully, but these errors were encountered:
@smoke
Scenario Outline: Test example
Given Step with
When Step with
Then Result is
@qa
Examples:
| param1 | param2 | result |
| foo | bar | foobar |
| 1 | 2 | 3 |
@uat
Examples:
| param1 | param2 | result |
| foo | bar | foobar |
| 1 | 2 | 3 |
When I run below command through “scripts”, it takes correct environment but it runs all the scenarios and completely ignore given tag.
"npx cypress-tags run -e TAGS="@smoke" --browser chrome --env env=qa"
after removing --env env=qa - it works fine.
our requirement is to run scenarios in different environments by switching it by command.
Can someone please look into it?
The text was updated successfully, but these errors were encountered: