Skip to content

chore(deps): update cucumber packages (major) #1791

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Oct 1, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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