cucumber-reactive-reporter 1.0.2 → 1.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +9 -2
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -37,7 +37,7 @@ let metadata = {
37
37
  };
38
38
  options.metadata = metadata;
39
39
  (async () => {
40
- await Reporter.generate("public/cucumber-results.json", "test/", options);
40
+ await Reporter.generate("mytest/cucumber-output.json", "htmlOutputFolder/", options);
41
41
  })();
42
42
  ```
43
43
 
@@ -65,4 +65,11 @@ links: {
65
65
  ```
66
66
  2. patch more settings for intial render (before/after toggle, theme, filter etc.)
67
67
  3. handle state "ambiguous" (probably lump em with errors), generate one when there are two test definitions with similar regex
68
- 4. Figure out a strategy for handling combined reports (from parallel runs)
68
+ 4. Figure out a strategy for handling combined reports (from parallel runs)
69
+
70
+ ### Release notes
71
+
72
+ | Version | Description |
73
+ | ----------- | ----------- |
74
+ | 1.0.2| improvements to debugging and readme|
75
+ | 1.0.3 | fixed crashes when search threw syntax errors<br>fixed css for @tags and @metadata buttons |
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "cucumber-reactive-reporter",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "A filterable html report generator for cucumberjs written in react",
5
5
  "private": false,
6
6
  "homepage": "https://github.com/unsuspecting-noob/cucumber-reactive-reporter",
7
7
  "main": "dist/cucumber-reactive-reporter.cjs.js",
8
8
  "module": "dist/cucumber-reactive-reporter.esm.js",
9
- "files": ["dist/**/*"],
9
+ "files": ["dist/*.js", "dist/react/**/*", "dist/package.json"],
10
10
  "repository": "github.com:unsuspecting-noob/cucumber-reactive-reporter.git",
11
11
  "keywords": ["cucumber", "cucumberjs", "html", "report", "reporter"],
12
12
  "license": "MIT",