cucumber-reactive-reporter 1.0.6 → 1.0.8
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.
- package/README.md +2 -0
- package/dist/cucumber-reactive-reporter.cjs.js +2 -3
- package/dist/cucumber-reactive-reporter.esm.js +2 -3
- package/dist/package.json +1 -1
- package/dist/react/asset-manifest.json +1 -1
- package/dist/react/precache-manifest.js +4 -4
- package/dist/react/static/js/2.js +1 -1
- package/dist/react/static/js/main.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -78,3 +78,5 @@ links: {
|
|
|
78
78
|
| 1.0.4 | Added more pagination choices for scenariosList, 50 and 100 |
|
|
79
79
|
| 1.0.5 | Fixing publishing code and adding notes |
|
|
80
80
|
| 1.0.6 | Added pagination to the main feature screen, shows up if above 50 |
|
|
81
|
+
| 1.0.7 | Changed feature pagination to be always on if above 10 elements, the reason why is you can change to display 10 at a time to force single column|
|
|
82
|
+
| 1.0.8 | Fixed json parsing error for newer cucumber version, where Before and After steps do not provide code line info|
|
|
@@ -263,9 +263,6 @@ let _processStep = (state, scenarioId, st) => {
|
|
|
263
263
|
hidden,
|
|
264
264
|
keyword,
|
|
265
265
|
line,
|
|
266
|
-
match: {
|
|
267
|
-
location
|
|
268
|
-
},
|
|
269
266
|
name,
|
|
270
267
|
result: {
|
|
271
268
|
duration,
|
|
@@ -273,6 +270,8 @@ let _processStep = (state, scenarioId, st) => {
|
|
|
273
270
|
status
|
|
274
271
|
}
|
|
275
272
|
} = st;
|
|
273
|
+
let location = "";
|
|
274
|
+
if (st.match) location = st.match.location;
|
|
276
275
|
let step = {
|
|
277
276
|
args,
|
|
278
277
|
duration,
|
|
@@ -259,9 +259,6 @@ let _processStep = (state, scenarioId, st) => {
|
|
|
259
259
|
hidden,
|
|
260
260
|
keyword,
|
|
261
261
|
line,
|
|
262
|
-
match: {
|
|
263
|
-
location
|
|
264
|
-
},
|
|
265
262
|
name,
|
|
266
263
|
result: {
|
|
267
264
|
duration,
|
|
@@ -269,6 +266,8 @@ let _processStep = (state, scenarioId, st) => {
|
|
|
269
266
|
status
|
|
270
267
|
}
|
|
271
268
|
} = st;
|
|
269
|
+
let location = "";
|
|
270
|
+
if (st.match) location = st.match.location;
|
|
272
271
|
let step = {
|
|
273
272
|
args,
|
|
274
273
|
duration,
|
package/dist/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cucumber-reactive-reporter",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.8",
|
|
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",
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"index.html": "./index.html",
|
|
9
9
|
"precache-manifest.js": "./precache-manifest.js",
|
|
10
10
|
"service-worker.js": "./service-worker.js",
|
|
11
|
-
"static/js/2.LICENSE.txt": "./static/js/2.LICENSE.txt",
|
|
11
|
+
"static/js/2.js.LICENSE.txt": "./static/js/2.js.LICENSE.txt",
|
|
12
12
|
"static/js/main.js.LICENSE.txt": "./static/js/main.js.LICENSE.txt",
|
|
13
13
|
"static/media/font-awesome.css": "./static/media/fontawesome-webfont.woff",
|
|
14
14
|
"static/media/300.css": "./static/media/roboto-vietnamese-300-normal.woff2",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
self.__precacheManifest = (self.__precacheManifest || []).concat([
|
|
2
2
|
{
|
|
3
|
-
"revision": "
|
|
3
|
+
"revision": "d469972695b055f994173fcd0424212f",
|
|
4
4
|
"url": "./index.html"
|
|
5
5
|
},
|
|
6
6
|
{
|
|
@@ -8,7 +8,7 @@ self.__precacheManifest = (self.__precacheManifest || []).concat([
|
|
|
8
8
|
"url": "./static/css/2.css"
|
|
9
9
|
},
|
|
10
10
|
{
|
|
11
|
-
"revision": "
|
|
11
|
+
"revision": "07a3e94934dfdadda925",
|
|
12
12
|
"url": "./static/css/main.css"
|
|
13
13
|
},
|
|
14
14
|
{
|
|
@@ -17,10 +17,10 @@ self.__precacheManifest = (self.__precacheManifest || []).concat([
|
|
|
17
17
|
},
|
|
18
18
|
{
|
|
19
19
|
"revision": "40a6034f8347758ed4443191f7649e9a",
|
|
20
|
-
"url": "./static/js/2.LICENSE.txt"
|
|
20
|
+
"url": "./static/js/2.js.LICENSE.txt"
|
|
21
21
|
},
|
|
22
22
|
{
|
|
23
|
-
"revision": "
|
|
23
|
+
"revision": "07a3e94934dfdadda925",
|
|
24
24
|
"url": "./static/js/main.js"
|
|
25
25
|
},
|
|
26
26
|
{
|