File tree 1 file changed +6
-6
lines changed
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -30,29 +30,29 @@ Feature: Target specific scenarios
30
30
"""
31
31
const {Given} = require('@cucumber/cucumber')
32
32
33
- Given(/^ a step is (.*)$/ , function() {})
33
+ Given(' a step' , function() {})
34
34
"""
35
35
36
36
Scenario : run a single scenario
37
37
When I run cucumber-js with `--tags @a`
38
- Then it fails
38
+ Then it passes
39
39
And it runs the scenario "first scenario"
40
40
41
41
Scenario : filter out scenarios with ~
42
42
When I run cucumber-js with `--tags "not @b" `
43
- Then it fails
43
+ Then it passes
44
44
And it runs the scenario "first scenario"
45
45
46
46
Scenario : merge multiple tag expressions
47
47
When I run cucumber-js with `--tags @b --tags "not @c" `
48
- Then it fails
48
+ Then it passes
49
49
And it runs the scenarios:
50
50
| NAME |
51
51
| second scenario - Z |
52
52
53
53
Scenario : run a single scenario outline
54
54
When I run cucumber-js with `--tags @b`
55
- Then it fails
55
+ Then it passes
56
56
And it runs the scenarios:
57
57
| NAME |
58
58
| second scenario - X |
@@ -61,7 +61,7 @@ Feature: Target specific scenarios
61
61
62
62
Scenario : run a single scenario outline examples
63
63
When I run cucumber-js with `--tags @c`
64
- Then it fails
64
+ Then it passes
65
65
And it runs the scenarios:
66
66
| NAME |
67
67
| second scenario - X |
You can’t perform that action at this time.
0 commit comments