Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/arociris/cucumberjs-skiptag
https://github.com/arociris/cucumberjs-skiptag
cucumber-js cucumber-plugin cucumber-tags cucumberjs
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/arociris/cucumberjs-skiptag
- Owner: arociris
- License: mit
- Created: 2019-06-24T07:29:39.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-07-12T02:40:55.000Z (over 1 year ago)
- Last Synced: 2024-11-18T12:16:06.947Z (about 2 months ago)
- Topics: cucumber-js, cucumber-plugin, cucumber-tags, cucumberjs
- Language: JavaScript
- Size: 102 KB
- Stars: 2
- Watchers: 0
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 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`
3. 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 `**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`