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
and create a scenario in TDD fashion (i.e. Gherkin only, without passing implementation) marking it with an ignore tag
Feature: Foo
@foo
Scenario: Lorem
When foo
Then bar
@foo @todo
Scenario: Ipsum
When baz
Then qux
Now when you run the tests with some flag, e.g. yarn test -t @foo, it overrides the default not @todo and executed unfinished scenario.
Would it be possible to support multiple tags, e.g. simple tags.map(tag =>`(${tag})`).join(' and ') to turn it into final tag expression before futher processing?
The text was updated successfully, but these errors were encountered:
Could you please support multiple
-t
arguments, presumably merging them into single(...) and (...)
string before parsing it as a tag expression.For example, if we define default profile as
and create a scenario in TDD fashion (i.e. Gherkin only, without passing implementation) marking it with an ignore tag
Now when you run the tests with some flag, e.g.
yarn test -t @foo
, it overrides the defaultnot @todo
and executed unfinished scenario.Would it be possible to support multiple tags, e.g. simple
tags.map(tag =>`(${tag})`).join(' and ')
to turn it into final tag expression before futher processing?The text was updated successfully, but these errors were encountered: