Skip to content

Commit 97ff7e5

Browse files
Bump version
1 parent 503afd8 commit 97ff7e5

File tree

3 files changed

+17
-12
lines changed

3 files changed

+17
-12
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
### 1.0.7
2+
3+
- Fix to address multiple example tables in scenario outlines [PR #5](https://github.com/ktryniszewski-mdsol/codeceptjs-cucumber-json-reporter/pull/5)
4+
5+
---
6+
17
### 1.0.6
28

39
- Addition of step timing/duration added [PR #4](https://github.com/ktryniszewski-mdsol/codeceptjs-cucumber-json-reporter/pull/4)

README.md

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -27,17 +27,16 @@ npm i codeceptjs-cucumber-json-reporter
2727
```
2828
...
2929
plugins: {
30-
cucumberJsonReporter: {
31-
require: 'codeceptjs-cucumber-json-reporter',
32-
enabled: true, // if false, pass --plugins cucumberJsonReporter
33-
attachScreenshots: true, // true by default
34-
attachComments: true, // true by default
35-
outputFile: 'file.json', // cucumber_output.json by default
36-
uniqueFileNames: false, // if true outputFile is ignored in favor of unique file names in the format of `cucumber_output_<UUID>.json`. Useful for parallel test execution
37-
includeExampleValues: false // if true incorporate actual values from Examples table along with variable placeholder when writing steps to the report
38-
timeMultiplier: 1000000, // Used when calculating duration of individual BDD steps. Defaults to nanoseconds
39-
};
40-
},
30+
cucumberJsonReporter: {
31+
require: 'codeceptjs-cucumber-json-reporter',
32+
enabled: true, // if false, pass --plugins cucumberJsonReporter
33+
attachScreenshots: true, // true by default
34+
attachComments: true, // true by default
35+
outputFile: 'file.json', // cucumber_output.json by default
36+
uniqueFileNames: false, // if true outputFile is ignored in favor of unique file names in the format of `cucumber_output_<UUID>.json`. Useful for parallel test execution
37+
includeExampleValues: false // if true incorporate actual values from Examples table along with variable placeholder when writing steps to the report
38+
timeMultiplier: 1000000, // Used when calculating duration of individual BDD steps. Defaults to nanoseconds
39+
},
4140
}
4241
...
4342
```

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "codeceptjs-cucumber-json-reporter",
3-
"version": "1.0.6",
3+
"version": "1.0.7",
44
"description": "CodeceptJS plugin to generate a cucumberjs json output",
55
"main": "index.js",
66
"scripts": {

0 commit comments

Comments
 (0)