Gathering detailed insights and metrics for generator-cucumber-steps
Gathering detailed insights and metrics for generator-cucumber-steps
Gathering detailed insights and metrics for generator-cucumber-steps
Gathering detailed insights and metrics for generator-cucumber-steps
cucumber-steps-generator
cucumber steps generator
generator-testcafe-cucumber-steps
### How to use ``` npm install -g yo npm install -g generator-testcafe-cucumber-steps
@jambit/wdio-cucumber-selected-steps-stepdoc
Cucumber step documentation generator for @jambit/wdio-cucumber-selected-steps
generator-prkm-cucumber
Cucumber steps generation on features
npm install generator-cucumber-steps
Typescript
Module System
Node Version
NPM Version
JavaScript (96.01%)
Gherkin (3.99%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
6 Stars
15 Commits
7 Forks
2 Watchers
3 Branches
1 Contributors
Updated on Oct 14, 2022
Latest Version
0.1.3
Package Id
generator-cucumber-steps@0.1.3
Size
3.62 kB
NPM Version
4.1.2
Node Version
7.7.4
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
3
Fast steps-defs based on features generation :watermelon:
You are tired of creating a "steps file"? Me too, so I decided to simplify my problem.
1npm install -g yo 2npm install -g generator-cucumber-steps
1yo cucumber-steps
Select path to the feature
-file (without file extension) and location where will be generated a stepsDefs file. It's simple!
1Feature: title 2 Scenario: title 3 Given precondition with "1" and "2" 4 When action 5 And addition 6 Then testable outcome equals "1"
If you have same feature with parameters, you'll recieve:
1const {defineSupportCode} = require('cucumber'); 2 3defineSupportCode(function ({Given, When, Then}) { 4 Given(/^precondition with "(.*)" and "(.*)"$/, function (param1, param2) { 5 return true; 6 }); 7 When(/^action$/, function () { 8 return true; 9 }); 10 And(/^addition$/, function () { 11 return true; 12 }); 13 Then(/^testable outcome equals "(.*)"$/, function (param1) { 14 return true; 15 }); 16});
Dictionary in new version of gherkin was changed. Be careful if you write your features with locale support!
For example, in Russian localization, key word Если
now refer to Given
. Use Когда
or synonyms of И
.
MIT © lamartire
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
no SAST tool detected
Details
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
Found 0/15 approved changesets -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
project is not fuzzed
Details
Reason
security policy file not detected
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
80 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More