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
Hi, we're currently using your library in our project and now we're facing an issue with '--tags' parameter.
We're in a situation when we need to exclude features marked with tag A OR tag B.
According to your spec, --tags parameter takes String or Array as a value, and in case we need OR condition in expression, we got to use String version and write down tags separated with comma.
So our tag expression looks like --tags='~@A,~@B', but for some reason during the tests run it excludes only features tagged with B. We also tried to hardcode this in cucumberjs configuration, like tags: '~@A, ~@B' and it works just the same.
However, I got to tell that 'Array approach' works fine.
Is it some kind of a bug or we're doing something wrong?
The text was updated successfully, but these errors were encountered:
Hi, we're currently using your library in our project and now we're facing an issue with '--tags' parameter.
We're in a situation when we need to exclude features marked with tag A OR tag B.
According to your spec, --tags parameter takes String or Array as a value, and in case we need OR condition in expression, we got to use String version and write down tags separated with comma.
So our tag expression looks like
--tags='~@A,~@B'
, but for some reason during the tests run it excludes only features tagged with B. We also tried to hardcode this in cucumberjs configuration, liketags: '~@A, ~@B'
and it works just the same.However, I got to tell that 'Array approach' works fine.
Is it some kind of a bug or we're doing something wrong?
The text was updated successfully, but these errors were encountered: