Skip to content

Commit 16021f6

Browse files
renovate[bot]renovate-botaurelien-reeves
authored
chore(deps): update cucumber packages (major) (#1791)
* chore(deps): update cucumber packages * Implement new CCK tests from CCK 8.0.0 * Bump compatibility-kit to v9.0.0 Co-authored-by: Renovate Bot <[email protected]> Co-authored-by: aurelien-reeves <[email protected]>
1 parent 04b320a commit 16021f6

File tree

5 files changed

+97
-58
lines changed

5 files changed

+97
-58
lines changed
+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
import { Given } from '../../../src'
2+
3+
Given('an implemented step', function () {
4+
// no-op
5+
})
6+
7+
Given('a step that isnt implemented yet', function () {
8+
return 'pending'
9+
})
10+
11+
Given('a step that we expect to be skipped', function () {
12+
// no-op
13+
})
+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
import { Before, Given } from '../../../src'
2+
3+
Before('@skip', function () {
4+
return 'skipped'
5+
})
6+
7+
Given('an implemented step', function () {
8+
// no-op
9+
})
10+
11+
Given('a step that we expect to be skipped', function () {
12+
// no-op
13+
})
14+
15+
Given('a step that skips', function () {
16+
return 'skipped'
17+
})
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import { Given } from '../../../src'
2+
3+
Given('an implemented step', function () {
4+
// no-op
5+
})
6+
7+
Given('a step that we expect to be skipped', function () {
8+
// no-op
9+
})

package-lock.json

+53-53
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -179,11 +179,11 @@
179179
"dependencies": {
180180
"@cucumber/create-meta": "6.0.1",
181181
"@cucumber/cucumber-expressions": "12.1.3",
182-
"@cucumber/gherkin": "20.0.1",
183-
"@cucumber/gherkin-streams": "3.0.0",
184-
"@cucumber/html-formatter": "16.0.1",
182+
"@cucumber/gherkin": "21.0.0",
183+
"@cucumber/gherkin-streams": "4.0.0",
184+
"@cucumber/html-formatter": "17.0.0",
185185
"@cucumber/messages": "17.1.1",
186-
"@cucumber/tag-expressions": "3.0.1",
186+
"@cucumber/tag-expressions": "4.0.2",
187187
"assertion-error-formatter": "^3.0.0",
188188
"capital-case": "^1.0.4",
189189
"cli-table3": "^0.6.0",
@@ -207,7 +207,7 @@
207207
"verror": "^1.10.0"
208208
},
209209
"devDependencies": {
210-
"@cucumber/compatibility-kit": "7.1.0",
210+
"@cucumber/compatibility-kit": "9.0.0",
211211
"@cucumber/message-streams": "3.0.0",
212212
"@cucumber/query": "11.0.0",
213213
"@sinonjs/fake-timers": "8.0.1",

0 commit comments

Comments
 (0)