-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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]>
- Loading branch information
1 parent
04b320a
commit 16021f6
Showing
5 changed files
with
97 additions
and
58 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
}) |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters