Gathering detailed insights and metrics for generator-testcafe-cucumber-steps
Gathering detailed insights and metrics for generator-testcafe-cucumber-steps
Gathering detailed insights and metrics for generator-testcafe-cucumber-steps
Gathering detailed insights and metrics for generator-testcafe-cucumber-steps
Testcafe cucumber steps yeoman generator.
npm install generator-testcafe-cucumber-steps
Typescript
Module System
Node Version
NPM Version
JavaScript (97.52%)
Gherkin (1.72%)
HTML (0.76%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
2 Stars
11 Commits
2 Forks
1 Watchers
16 Branches
1 Contributors
Updated on Mar 04, 2023
Latest Version
1.0.0-6
Package Id
generator-testcafe-cucumber-steps@1.0.0-6
Unpacked Size
52.30 kB
Size
13.17 kB
File Count
6
NPM Version
6.9.0
Node Version
10.16.1
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
npm install -g yo
npm install -g generator-testcafe-cucumber-steps
yo testcafe-cucumber-steps
featurePath
: Path to the target, the .feature
file.stepsPath
: Path of the steps directory (the .steps.js
file will be generated here).stepFilename
: Filename of the steps' file (without .steps.js
), it could have the form of a path (/subdirectory/stepFilename
) that will create the proper folders inside the stepsPath
.templatePath
: Path to the filename to use for create the .steps.js
file.The template should be a EJS file, the default one is:
1const {Given, When, Then} = require('cucumber'); 2 3<% steps.forEach(function(step) { -%> 4<%= step.keyword %>('<%- step.expression %>', function (<%= step.parameters.join(', ') %>) { 5 return 'pending'; 6}); 7 8<% }); 9 10-%>
The steps
object is an array with the steps to be used for the file generation, each step
has the following properties:
keyword
: The captured keyword (When, Then, Given).expression
: The expression content without "
, '
, /^
and $/
.parameters
: An array of the generated paramenter names, it should be param1
, param2
, param3
and so on based on the detected parameters (any string between '
or "
) in the expression.Based on https://github.com/lamartire/generator-cucumber-steps but with the updated modules and for Testcafé environments.
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/11 approved changesets -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
60 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-07-14
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