Skip to content

Commit

Permalink
chore(deps): update cucumber packages (major) (#1791)
Browse files Browse the repository at this point in the history
* 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]>
  • Loading branch information
3 people authored Oct 1, 2021
1 parent 04b320a commit 16021f6
Show file tree
Hide file tree
Showing 5 changed files with 97 additions and 58 deletions.
13 changes: 13 additions & 0 deletions compatibility/features/pending/pending.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import { Given } from '../../../src'

Given('an implemented step', function () {
// no-op
})

Given('a step that isnt implemented yet', function () {
return 'pending'
})

Given('a step that we expect to be skipped', function () {
// no-op
})
17 changes: 17 additions & 0 deletions compatibility/features/skipped/skipped.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import { Before, Given } from '../../../src'

Before('@skip', function () {
return 'skipped'
})

Given('an implemented step', function () {
// no-op
})

Given('a step that we expect to be skipped', function () {
// no-op
})

Given('a step that skips', function () {
return 'skipped'
})
9 changes: 9 additions & 0 deletions compatibility/features/undefined/undefined.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import { Given } from '../../../src'

Given('an implemented step', function () {
// no-op
})

Given('a step that we expect to be skipped', function () {
// no-op
})
106 changes: 53 additions & 53 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -179,11 +179,11 @@
"dependencies": {
"@cucumber/create-meta": "6.0.1",
"@cucumber/cucumber-expressions": "12.1.3",
"@cucumber/gherkin": "20.0.1",
"@cucumber/gherkin-streams": "3.0.0",
"@cucumber/html-formatter": "16.0.1",
"@cucumber/gherkin": "21.0.0",
"@cucumber/gherkin-streams": "4.0.0",
"@cucumber/html-formatter": "17.0.0",
"@cucumber/messages": "17.1.1",
"@cucumber/tag-expressions": "3.0.1",
"@cucumber/tag-expressions": "4.0.2",
"assertion-error-formatter": "^3.0.0",
"capital-case": "^1.0.4",
"cli-table3": "^0.6.0",
Expand All @@ -207,7 +207,7 @@
"verror": "^1.10.0"
},
"devDependencies": {
"@cucumber/compatibility-kit": "7.1.0",
"@cucumber/compatibility-kit": "9.0.0",
"@cucumber/message-streams": "3.0.0",
"@cucumber/query": "11.0.0",
"@sinonjs/fake-timers": "8.0.1",
Expand Down

0 comments on commit 16021f6

Please sign in to comment.