cucumber-reactive-reporter 1.0.2 → 1.0.4

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 CHANGED
@@ -5,15 +5,17 @@ Parses output of cucumberjs
5
5
  provides filtering via tags ans status and few other things.</b>
6
6
  <br>
7
7
  ### Why another reporter? ###
8
- <b>I have made a somewhat odd choice of using cucumberjs for microservice API testing, unlike the usual application of testing UIs.
9
- Because validation was centered on various data, i quickly ran into limitations of existing reporters with data attachments.
10
- These are the things that were important to me that i tried to implement in this reporter:
8
+ <b>The main motivation behind this project was the need to control various data attachments and how they show up in reports.
9
+ Existing libraries gave very sandboxy and limited options for things like attaching a custom html line to the report.
10
+
11
+ Here are some of the things that were deemed important to implement in this reporter:
11
12
  </b>
12
13
 
13
14
  * Control over how data is displayed, including the ability to pass html snippets as attachments and render them in the reporter: (can be useful when pointing to "local" files generated as part of the test run)
14
15
  * Ability to filter and search the reports based on such things like status and tags
15
16
  * Ability to work with large-ish amounts of tests, some existing reports become unwieldy or slow
16
17
  * Control filter and search configuration with url params, allows sharing a preconfigured link in case you want to share a specific failure for example.
18
+ * Better use available space on the report page (needs tweaking)
17
19
 
18
20
  </p>
19
21
 
@@ -37,7 +39,7 @@ let metadata = {
37
39
  };
38
40
  options.metadata = metadata;
39
41
  (async () => {
40
- await Reporter.generate("public/cucumber-results.json", "test/", options);
42
+ await Reporter.generate("mytest/cucumber-output.json", "htmlOutputFolder/", options);
41
43
  })();
42
44
  ```
43
45
 
@@ -65,4 +67,12 @@ links: {
65
67
  ```
66
68
  2. patch more settings for intial render (before/after toggle, theme, filter etc.)
67
69
  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)
70
+ 4. Figure out a strategy for handling combined reports (from parallel runs)
71
+
72
+ ### Release notes
73
+
74
+ | Version | Description |
75
+ | ----------- | ----------- |
76
+ | 1.0.2 | improvements to debugging and readme |
77
+ | 1.0.3 | fixed crashes when search threw syntax errors<br>fixed css for @tags and @metadata buttons |
78
+ | 1.0.4 | Added more pagination choices for scenariosList, 50 and 100 |
package/dist/package.json CHANGED
@@ -1,17 +1,17 @@
1
1
  {
2
2
  "name": "cucumber-reactive-reporter",
3
- "version": "1.0.0",
3
+ "version": "1.0.4",
4
4
  "description": "A filterable html report generator for cucumberjs written in react",
5
- "private": true,
6
- "homepage": "./",
5
+ "private": false,
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",
13
13
  "scripts": {
14
- "start": "react-scripts start",
14
+ "start": "PUBLIC_URL=./ react-scripts start",
15
15
  "build": "rollup -c",
16
16
  "prebuildreact": "rm -rf build && rm -rf react",
17
17
  "buildreact": "react-scripts build && npm run build",
@@ -19,6 +19,8 @@
19
19
  "pregeneratedist": "rm -rf dist",
20
20
  "generatedist": "npm run buildreact && node prepDist.mjs",
21
21
  "postgeneratedist": "node install.mjs",
22
+ "pretestinstall": "rm -rf test",
23
+ "testinstall": "node devtest.mjs && touch test/.nojekyll",
22
24
  "test": "react-scripts test",
23
25
  "eject": "react-scripts eject"
24
26
  },
@@ -1,20 +1,20 @@
1
1
  {
2
2
  "files": {
3
- "main.css": "./static/css/main.css",
4
- "main.js": "./static/js/main.js",
5
- "runtime-main.js": "./static/js/runtime-main.js",
6
- "static/css/2.css": "./static/css/2.css",
7
- "static/js/2.js": "./static/js/2.js",
8
- "index.html": "./index.html",
9
- "precache-manifest.js": "./precache-manifest.js",
10
- "service-worker.js": "./service-worker.js",
11
- "static/js/2.js.LICENSE.txt": "./static/js/2.js.LICENSE.txt",
12
- "static/js/main.LICENSE.txt": "./static/js/main.LICENSE.txt",
13
- "static/media/font-awesome.css": "./static/media/fontawesome-webfont.woff",
14
- "static/media/300.css": "./static/media/roboto-vietnamese-300-normal.woff2",
15
- "static/media/400.css": "./static/media/roboto-vietnamese-400-normal.woff2",
16
- "static/media/500.css": "./static/media/roboto-vietnamese-500-normal.woff2",
17
- "static/media/700.css": "./static/media/roboto-vietnamese-700-normal.woff2"
3
+ "main.css": "/unsuspecting-noob/cucumber-reactive-reporter/static/css/main.css",
4
+ "main.js": "/unsuspecting-noob/cucumber-reactive-reporter/static/js/main.js",
5
+ "runtime-main.js": "/unsuspecting-noob/cucumber-reactive-reporter/static/js/runtime-main.js",
6
+ "static/css/2.css": "/unsuspecting-noob/cucumber-reactive-reporter/static/css/2.css",
7
+ "static/js/2.js": "/unsuspecting-noob/cucumber-reactive-reporter/static/js/2.js",
8
+ "index.html": "/unsuspecting-noob/cucumber-reactive-reporter/index.html",
9
+ "precache-manifest.js": "/unsuspecting-noob/cucumber-reactive-reporter/precache-manifest.js",
10
+ "service-worker.js": "/unsuspecting-noob/cucumber-reactive-reporter/service-worker.js",
11
+ "static/js/2.LICENSE.txt": "/unsuspecting-noob/cucumber-reactive-reporter/static/js/2.LICENSE.txt",
12
+ "static/js/main.js.LICENSE.txt": "/unsuspecting-noob/cucumber-reactive-reporter/static/js/main.js.LICENSE.txt",
13
+ "static/media/font-awesome.css": "/unsuspecting-noob/cucumber-reactive-reporter/static/media/fontawesome-webfont.woff",
14
+ "static/media/300.css": "/unsuspecting-noob/cucumber-reactive-reporter/static/media/roboto-vietnamese-300-normal.woff2",
15
+ "static/media/400.css": "/unsuspecting-noob/cucumber-reactive-reporter/static/media/roboto-vietnamese-400-normal.woff2",
16
+ "static/media/500.css": "/unsuspecting-noob/cucumber-reactive-reporter/static/media/roboto-vietnamese-500-normal.woff2",
17
+ "static/media/700.css": "/unsuspecting-noob/cucumber-reactive-reporter/static/media/roboto-vietnamese-700-normal.woff2"
18
18
  },
19
19
  "entrypoints": [
20
20
  "static/js/runtime-main.js",
@@ -1 +1 @@
1
- <!doctype html><html lang="en"><head><meta charset="utf-8"/><meta name="viewport" content="width=device-width,initial-scale=1"/><link rel="icon" href="./favicon.png"><title>-=title=-</title><link href="./static/css/2.css" rel="stylesheet"><link href="./static/css/main.css" rel="stylesheet"></head><body><div id="root"></div><script>!function(e){function r(r){for(var n,c,i=r[0],l=r[1],a=r[2],f=0,s=[];f<i.length;f++)c=i[f],Object.prototype.hasOwnProperty.call(o,c)&&o[c]&&s.push(o[c][0]),o[c]=0;for(n in l)Object.prototype.hasOwnProperty.call(l,n)&&(e[n]=l[n]);for(p&&p(r);s.length;)s.shift()();return u.push.apply(u,a||[]),t()}function t(){for(var e,r=0;r<u.length;r++){for(var t=u[r],n=!0,i=1;i<t.length;i++){var l=t[i];0!==o[l]&&(n=!1)}n&&(u.splice(r--,1),e=c(c.s=t[0]))}return e}var n={},o={1:0},u=[];function c(r){if(n[r])return n[r].exports;var t=n[r]={i:r,l:!1,exports:{}};return e[r].call(t.exports,t,t.exports,c),t.l=!0,t.exports}c.m=e,c.c=n,c.d=function(e,r,t){c.o(e,r)||Object.defineProperty(e,r,{enumerable:!0,get:t})},c.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},c.t=function(e,r){if(1&r&&(e=c(e)),8&r)return e;if(4&r&&"object"==typeof e&&e&&e.__esModule)return e;var t=Object.create(null);if(c.r(t),Object.defineProperty(t,"default",{enumerable:!0,value:e}),2&r&&"string"!=typeof e)for(var n in e)c.d(t,n,function(r){return e[r]}.bind(null,n));return t},c.n=function(e){var r=e&&e.__esModule?function(){return e.default}:function(){return e};return c.d(r,"a",r),r},c.o=function(e,r){return Object.prototype.hasOwnProperty.call(e,r)},c.p="./";var i=this["webpackJsonpcucumber-reactive-reporter"]=this["webpackJsonpcucumber-reactive-reporter"]||[],l=i.push.bind(i);i.push=r,i=i.slice();for(var a=0;a<i.length;a++)r(i[a]);var p=l;t()}([])</script><script src="./static/js/2.js"></script><script src="./static/js/main.js"></script></body></html>
1
+ <!doctype html><html lang="en"><head><meta charset="utf-8"/><meta name="viewport" content="width=device-width,initial-scale=1"/><link rel="icon" href="./favicon.png"><title>-=title=-</title><link href="/unsuspecting-noob/cucumber-reactive-reporter/static/css/2.css" rel="stylesheet"><link href="/unsuspecting-noob/cucumber-reactive-reporter/static/css/main.css" rel="stylesheet"></head><body><div id="root"></div><script>!function(e){function r(r){for(var n,c,i=r[0],p=r[1],a=r[2],f=0,s=[];f<i.length;f++)c=i[f],Object.prototype.hasOwnProperty.call(o,c)&&o[c]&&s.push(o[c][0]),o[c]=0;for(n in p)Object.prototype.hasOwnProperty.call(p,n)&&(e[n]=p[n]);for(l&&l(r);s.length;)s.shift()();return u.push.apply(u,a||[]),t()}function t(){for(var e,r=0;r<u.length;r++){for(var t=u[r],n=!0,i=1;i<t.length;i++){var p=t[i];0!==o[p]&&(n=!1)}n&&(u.splice(r--,1),e=c(c.s=t[0]))}return e}var n={},o={1:0},u=[];function c(r){if(n[r])return n[r].exports;var t=n[r]={i:r,l:!1,exports:{}};return e[r].call(t.exports,t,t.exports,c),t.l=!0,t.exports}c.m=e,c.c=n,c.d=function(e,r,t){c.o(e,r)||Object.defineProperty(e,r,{enumerable:!0,get:t})},c.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},c.t=function(e,r){if(1&r&&(e=c(e)),8&r)return e;if(4&r&&"object"==typeof e&&e&&e.__esModule)return e;var t=Object.create(null);if(c.r(t),Object.defineProperty(t,"default",{enumerable:!0,value:e}),2&r&&"string"!=typeof e)for(var n in e)c.d(t,n,function(r){return e[r]}.bind(null,n));return t},c.n=function(e){var r=e&&e.__esModule?function(){return e.default}:function(){return e};return c.d(r,"a",r),r},c.o=function(e,r){return Object.prototype.hasOwnProperty.call(e,r)},c.p="/unsuspecting-noob/cucumber-reactive-reporter/";var i=this["webpackJsonpcucumber-reactive-reporter"]=this["webpackJsonpcucumber-reactive-reporter"]||[],p=i.push.bind(i);i.push=r,i=i.slice();for(var a=0;a<i.length;a++)r(i[a]);var l=p;t()}([])</script><script src="/unsuspecting-noob/cucumber-reactive-reporter/static/js/2.js"></script><script src="/unsuspecting-noob/cucumber-reactive-reporter/static/js/main.js"></script></body></html>
@@ -1,182 +1,182 @@
1
1
  self.__precacheManifest = (self.__precacheManifest || []).concat([
2
2
  {
3
- "revision": "452417ddfbbd869ca40a482551511b28",
4
- "url": "./index.html"
3
+ "revision": "250552c4fe3c812013094302bdeaad7e",
4
+ "url": "/unsuspecting-noob/cucumber-reactive-reporter/index.html"
5
5
  },
6
6
  {
7
- "revision": "243e55865e4fd62148be",
8
- "url": "./static/css/2.css"
7
+ "revision": "ce9ba579c9648c2e06d1",
8
+ "url": "/unsuspecting-noob/cucumber-reactive-reporter/static/css/2.css"
9
9
  },
10
10
  {
11
- "revision": "498f1c831869ea10ae56",
12
- "url": "./static/css/main.css"
11
+ "revision": "f512c567fa1ffc2c158e",
12
+ "url": "/unsuspecting-noob/cucumber-reactive-reporter/static/css/main.css"
13
13
  },
14
14
  {
15
- "revision": "243e55865e4fd62148be",
16
- "url": "./static/js/2.js"
15
+ "revision": "ce9ba579c9648c2e06d1",
16
+ "url": "/unsuspecting-noob/cucumber-reactive-reporter/static/js/2.js"
17
17
  },
18
18
  {
19
19
  "revision": "40a6034f8347758ed4443191f7649e9a",
20
- "url": "./static/js/2.js.LICENSE.txt"
20
+ "url": "/unsuspecting-noob/cucumber-reactive-reporter/static/js/2.LICENSE.txt"
21
21
  },
22
22
  {
23
- "revision": "498f1c831869ea10ae56",
24
- "url": "./static/js/main.js"
23
+ "revision": "f512c567fa1ffc2c158e",
24
+ "url": "/unsuspecting-noob/cucumber-reactive-reporter/static/js/main.js"
25
25
  },
26
26
  {
27
27
  "revision": "4e0e34f265fae8f33b01b27ae29d9d6f",
28
- "url": "./static/js/main.LICENSE.txt"
28
+ "url": "/unsuspecting-noob/cucumber-reactive-reporter/static/js/main.js.LICENSE.txt"
29
29
  },
30
30
  {
31
- "revision": "921795e980c845532d8f",
32
- "url": "./static/js/runtime-main.js"
31
+ "revision": "9735fc7a4a41e8572107",
32
+ "url": "/unsuspecting-noob/cucumber-reactive-reporter/static/js/runtime-main.js"
33
33
  },
34
34
  {
35
35
  "revision": "674f50d287a8c48dc19ba404d20fe713",
36
- "url": "./static/media/fontawesome-webfont.eot"
36
+ "url": "/unsuspecting-noob/cucumber-reactive-reporter/static/media/fontawesome-webfont.eot"
37
37
  },
38
38
  {
39
39
  "revision": "912ec66d7572ff821749319396470bde",
40
- "url": "./static/media/fontawesome-webfont.svg"
40
+ "url": "/unsuspecting-noob/cucumber-reactive-reporter/static/media/fontawesome-webfont.svg"
41
41
  },
42
42
  {
43
43
  "revision": "af7ae505a9eed503f8b8e6982036873e",
44
- "url": "./static/media/fontawesome-webfont.woff2"
44
+ "url": "/unsuspecting-noob/cucumber-reactive-reporter/static/media/fontawesome-webfont.woff2"
45
45
  },
46
46
  {
47
47
  "revision": "b06871f281fee6b241d60582ae9369b9",
48
- "url": "./static/media/fontawesome-webfont.ttf"
48
+ "url": "/unsuspecting-noob/cucumber-reactive-reporter/static/media/fontawesome-webfont.ttf"
49
49
  },
50
50
  {
51
51
  "revision": "fee66e712a8a08eef5805a46892932ad",
52
- "url": "./static/media/fontawesome-webfont.woff"
52
+ "url": "/unsuspecting-noob/cucumber-reactive-reporter/static/media/fontawesome-webfont.woff"
53
53
  },
54
54
  {
55
55
  "revision": "2323284ef85bfeaca074c668b72109c6",
56
- "url": "./static/media/roboto-all-300-normal.woff"
56
+ "url": "/unsuspecting-noob/cucumber-reactive-reporter/static/media/roboto-all-300-normal.woff"
57
57
  },
58
58
  {
59
59
  "revision": "62b936e168110e58e89e70ec82e22755",
60
- "url": "./static/media/roboto-all-400-normal.woff"
60
+ "url": "/unsuspecting-noob/cucumber-reactive-reporter/static/media/roboto-all-400-normal.woff"
61
61
  },
62
62
  {
63
63
  "revision": "68d75d959b2a0e9958b11d781338c8f7",
64
- "url": "./static/media/roboto-all-500-normal.woff"
64
+ "url": "/unsuspecting-noob/cucumber-reactive-reporter/static/media/roboto-all-500-normal.woff"
65
65
  },
66
66
  {
67
67
  "revision": "aa462125b8faf7600001e1fe9b47e216",
68
- "url": "./static/media/roboto-all-700-normal.woff"
68
+ "url": "/unsuspecting-noob/cucumber-reactive-reporter/static/media/roboto-all-700-normal.woff"
69
69
  },
70
70
  {
71
71
  "revision": "9b9ec29522d1bf8924ccc2d917e1807b",
72
- "url": "./static/media/roboto-cyrillic-300-normal.woff2"
72
+ "url": "/unsuspecting-noob/cucumber-reactive-reporter/static/media/roboto-cyrillic-300-normal.woff2"
73
73
  },
74
74
  {
75
75
  "revision": "d9ac47c7e500fb7083b8d595eaf6fe12",
76
- "url": "./static/media/roboto-cyrillic-400-normal.woff2"
76
+ "url": "/unsuspecting-noob/cucumber-reactive-reporter/static/media/roboto-cyrillic-400-normal.woff2"
77
77
  },
78
78
  {
79
79
  "revision": "7b08b9e11fc6b8a8a1398b357e874144",
80
- "url": "./static/media/roboto-cyrillic-500-normal.woff2"
80
+ "url": "/unsuspecting-noob/cucumber-reactive-reporter/static/media/roboto-cyrillic-500-normal.woff2"
81
81
  },
82
82
  {
83
83
  "revision": "6f112ec2b932ee12379442c42853244e",
84
- "url": "./static/media/roboto-cyrillic-700-normal.woff2"
84
+ "url": "/unsuspecting-noob/cucumber-reactive-reporter/static/media/roboto-cyrillic-700-normal.woff2"
85
85
  },
86
86
  {
87
87
  "revision": "d04413353a32aed8a0db452373452870",
88
- "url": "./static/media/roboto-cyrillic-ext-300-normal.woff2"
88
+ "url": "/unsuspecting-noob/cucumber-reactive-reporter/static/media/roboto-cyrillic-ext-300-normal.woff2"
89
89
  },
90
90
  {
91
91
  "revision": "c00467dc3792a8ab586955a3faefcac9",
92
- "url": "./static/media/roboto-cyrillic-ext-400-normal.woff2"
92
+ "url": "/unsuspecting-noob/cucumber-reactive-reporter/static/media/roboto-cyrillic-ext-400-normal.woff2"
93
93
  },
94
94
  {
95
95
  "revision": "2742d81afb69e902e4513dc7cdda0a7f",
96
- "url": "./static/media/roboto-cyrillic-ext-500-normal.woff2"
96
+ "url": "/unsuspecting-noob/cucumber-reactive-reporter/static/media/roboto-cyrillic-ext-500-normal.woff2"
97
97
  },
98
98
  {
99
99
  "revision": "e0bc9313fdde7851c88c901baf3c2b5c",
100
- "url": "./static/media/roboto-cyrillic-ext-700-normal.woff2"
100
+ "url": "/unsuspecting-noob/cucumber-reactive-reporter/static/media/roboto-cyrillic-ext-700-normal.woff2"
101
101
  },
102
102
  {
103
103
  "revision": "dcdaee374d5bbeab0a5ed5c8cf39a6cd",
104
- "url": "./static/media/roboto-greek-300-normal.woff2"
104
+ "url": "/unsuspecting-noob/cucumber-reactive-reporter/static/media/roboto-greek-300-normal.woff2"
105
105
  },
106
106
  {
107
107
  "revision": "28668857bef1b85c5748a482cf9b74af",
108
- "url": "./static/media/roboto-greek-400-normal.woff2"
108
+ "url": "/unsuspecting-noob/cucumber-reactive-reporter/static/media/roboto-greek-400-normal.woff2"
109
109
  },
110
110
  {
111
111
  "revision": "53f395eb854a40e978706b1082570e42",
112
- "url": "./static/media/roboto-greek-500-normal.woff2"
112
+ "url": "/unsuspecting-noob/cucumber-reactive-reporter/static/media/roboto-greek-500-normal.woff2"
113
113
  },
114
114
  {
115
115
  "revision": "3f8b2aa43c439ca2c8930c198320c231",
116
- "url": "./static/media/roboto-greek-700-normal.woff2"
116
+ "url": "/unsuspecting-noob/cucumber-reactive-reporter/static/media/roboto-greek-700-normal.woff2"
117
117
  },
118
118
  {
119
119
  "revision": "c2be5367fbf0e1066261fd78eb103f4a",
120
- "url": "./static/media/roboto-greek-ext-300-normal.woff2"
120
+ "url": "/unsuspecting-noob/cucumber-reactive-reporter/static/media/roboto-greek-ext-300-normal.woff2"
121
121
  },
122
122
  {
123
123
  "revision": "35de3738b76d249ed060dd3d0f9286be",
124
- "url": "./static/media/roboto-greek-ext-400-normal.woff2"
124
+ "url": "/unsuspecting-noob/cucumber-reactive-reporter/static/media/roboto-greek-ext-400-normal.woff2"
125
125
  },
126
126
  {
127
127
  "revision": "e7b7001dff6c14165abdc0fefdecae06",
128
- "url": "./static/media/roboto-greek-ext-500-normal.woff2"
128
+ "url": "/unsuspecting-noob/cucumber-reactive-reporter/static/media/roboto-greek-ext-500-normal.woff2"
129
129
  },
130
130
  {
131
131
  "revision": "2953af0021626d3c3078b17590118908",
132
- "url": "./static/media/roboto-greek-ext-700-normal.woff2"
132
+ "url": "/unsuspecting-noob/cucumber-reactive-reporter/static/media/roboto-greek-ext-700-normal.woff2"
133
133
  },
134
134
  {
135
135
  "revision": "b9c29351c46f3e8c8631c4002457f48a",
136
- "url": "./static/media/roboto-latin-300-normal.woff2"
136
+ "url": "/unsuspecting-noob/cucumber-reactive-reporter/static/media/roboto-latin-300-normal.woff2"
137
137
  },
138
138
  {
139
139
  "revision": "15d9f621c3bd1599f0169dcf0bd5e63e",
140
- "url": "./static/media/roboto-latin-400-normal.woff2"
140
+ "url": "/unsuspecting-noob/cucumber-reactive-reporter/static/media/roboto-latin-400-normal.woff2"
141
141
  },
142
142
  {
143
143
  "revision": "3a44e06eb954b96aa043227f3534189d",
144
- "url": "./static/media/roboto-latin-500-normal.woff2"
144
+ "url": "/unsuspecting-noob/cucumber-reactive-reporter/static/media/roboto-latin-500-normal.woff2"
145
145
  },
146
146
  {
147
147
  "revision": "e9f5aaf547f165386cd313b995dddd8e",
148
- "url": "./static/media/roboto-latin-700-normal.woff2"
148
+ "url": "/unsuspecting-noob/cucumber-reactive-reporter/static/media/roboto-latin-700-normal.woff2"
149
149
  },
150
150
  {
151
151
  "revision": "716871ec15f054ec158445180fe280e1",
152
- "url": "./static/media/roboto-latin-ext-300-normal.woff2"
152
+ "url": "/unsuspecting-noob/cucumber-reactive-reporter/static/media/roboto-latin-ext-300-normal.woff2"
153
153
  },
154
154
  {
155
155
  "revision": "87ace20058325aa069320aa4af875dff",
156
- "url": "./static/media/roboto-latin-ext-400-normal.woff2"
156
+ "url": "/unsuspecting-noob/cucumber-reactive-reporter/static/media/roboto-latin-ext-400-normal.woff2"
157
157
  },
158
158
  {
159
159
  "revision": "e36fccd06262bef92e7a9841e2202225",
160
- "url": "./static/media/roboto-latin-ext-500-normal.woff2"
160
+ "url": "/unsuspecting-noob/cucumber-reactive-reporter/static/media/roboto-latin-ext-500-normal.woff2"
161
161
  },
162
162
  {
163
163
  "revision": "deb26e9b1a25438118e5d39d741ae6b6",
164
- "url": "./static/media/roboto-latin-ext-700-normal.woff2"
164
+ "url": "/unsuspecting-noob/cucumber-reactive-reporter/static/media/roboto-latin-ext-700-normal.woff2"
165
165
  },
166
166
  {
167
167
  "revision": "48c684d99330969e3ce90b9e9da2d698",
168
- "url": "./static/media/roboto-vietnamese-300-normal.woff2"
168
+ "url": "/unsuspecting-noob/cucumber-reactive-reporter/static/media/roboto-vietnamese-300-normal.woff2"
169
169
  },
170
170
  {
171
171
  "revision": "ca3b09b62fda648a4511700413313fd0",
172
- "url": "./static/media/roboto-vietnamese-400-normal.woff2"
172
+ "url": "/unsuspecting-noob/cucumber-reactive-reporter/static/media/roboto-vietnamese-400-normal.woff2"
173
173
  },
174
174
  {
175
175
  "revision": "7cda2cfee99d697daf8c14819d9004eb",
176
- "url": "./static/media/roboto-vietnamese-500-normal.woff2"
176
+ "url": "/unsuspecting-noob/cucumber-reactive-reporter/static/media/roboto-vietnamese-500-normal.woff2"
177
177
  },
178
178
  {
179
179
  "revision": "cdaab83619fcacd4027a77c99dd51e69",
180
- "url": "./static/media/roboto-vietnamese-700-normal.woff2"
180
+ "url": "/unsuspecting-noob/cucumber-reactive-reporter/static/media/roboto-vietnamese-700-normal.woff2"
181
181
  }
182
182
  ]);
@@ -14,7 +14,7 @@
14
14
  importScripts("https://storage.googleapis.com/workbox-cdn/releases/4.3.1/workbox-sw.js");
15
15
 
16
16
  importScripts(
17
- "./precache-manifest.js"
17
+ "/unsuspecting-noob/cucumber-reactive-reporter/precache-manifest.js"
18
18
  );
19
19
 
20
20
  self.addEventListener('message', (event) => {
@@ -33,7 +33,7 @@ workbox.core.clientsClaim();
33
33
  self.__precacheManifest = [].concat(self.__precacheManifest || []);
34
34
  workbox.precaching.precacheAndRoute(self.__precacheManifest, {});
35
35
 
36
- workbox.routing.registerNavigationRoute(workbox.precaching.getCacheKeyForURL("./index.html"), {
36
+ workbox.routing.registerNavigationRoute(workbox.precaching.getCacheKeyForURL("/unsuspecting-noob/cucumber-reactive-reporter/index.html"), {
37
37
 
38
38
  blacklist: [/^\/_/,/\/[^/?]+\.[^/]+$/],
39
39
  });