1.0.3 • Published 5 years ago

cucumberjs-skiptag v1.0.3

Weekly downloads
12
License
MIT
Repository
github
Last release
5 years ago

cucumberjs-skiptag

This package will serve as an added plugin to your cucumber tests by skipping test cases by matching them with tags.

In your run command you just have to provide option --skiptags with the tags that you want to exclude and those tests will be excluded. Such tests will be shown as skipped in you test report.

Installation: First you need to have cucumberjs-skiptag and Cucumber.js to be installed locally. npm install --save-dev cucumberjs-skiptag

Usage: 1. Add cucumberjs-skiptag to your steps definition as require('cucumberjs-skiptag') Thats it, you dont have to write any further code for it and it will do the rest by itself except defining the tags to be skipped. 2. Skip single tag e.g. tag1 - Single tag can be skipped using --skiptags @tag1

  1. Skip multiple tags tag e.g. tag1 and tag2
    • Multiple tags can be passed as comma separated using --skiptags @tag1,@tag2

Sample command: cucumber-js --skiptags @Tag1 <pathToFeatureFiles>

Note: You have to provide the path of folder where feature files are present. If not provided then, by default cucumber-js will read files from ./features folder and in such case this package will be ignored by cucumber-js. In that case, you might also see an error stating "No such option skiptags"

Running the examples:

  1. Clone the repo
  2. Fire below mentioned commands cd examples npm install
  3. To run example for single tag skip run below command npm run test-single
  4. To run example for multiple tags skip run below command npm run test-multi

1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago