gulp-cucumber
gulp-cucumber copied to clipboard
world-parameters
Would it be possible to add support for world-parameters?
Thanks
Any chances of having this published to the public npm registry? Thanks a lot.
meanwhile this hack worked for me: let runOptions = []; runOptions.push('--world-parameters'); runOptions.push(JSON.stringify({ "test": "value" }));
return gulp.src(globs, { read: false }) .pipe(cucumber({ 'format': format, 'runOptions': runOptions }))...