@openreplay/tracker 11.0.3 → 11.0.5
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/CHANGELOG.md +9 -0
- package/cjs/app/canvas.d.ts +3 -0
- package/cjs/app/canvas.js +23 -7
- package/cjs/app/index.d.ts +2 -0
- package/cjs/app/index.js +15 -6
- package/cjs/app/nodes.d.ts +1 -0
- package/cjs/app/nodes.js +3 -0
- package/cjs/index.d.ts +1 -0
- package/cjs/index.js +7 -1
- package/coverage/clover.xml +840 -739
- package/coverage/coverage-final.json +13 -12
- package/coverage/lcov-report/index.html +33 -33
- package/coverage/lcov-report/main/app/canvas.ts.html +23 -14
- package/coverage/lcov-report/main/app/guards.ts.html +1 -1
- package/coverage/lcov-report/main/app/index.html +16 -16
- package/coverage/lcov-report/main/app/index.ts.html +478 -82
- package/coverage/lcov-report/main/app/logger.ts.html +25 -91
- package/coverage/lcov-report/main/app/messages.gen.ts.html +62 -5
- package/coverage/lcov-report/main/app/nodes.ts.html +1 -1
- package/coverage/lcov-report/main/app/observer/iframe_observer.ts.html +2 -2
- package/coverage/lcov-report/main/app/observer/iframe_offsets.ts.html +1 -1
- package/coverage/lcov-report/main/app/observer/index.html +1 -1
- package/coverage/lcov-report/main/app/observer/shadow_root_observer.ts.html +2 -2
- package/coverage/lcov-report/main/app/observer/top_observer.ts.html +1 -1
- package/coverage/lcov-report/main/app/sanitizer.ts.html +1 -1
- package/coverage/lcov-report/main/app/session.ts.html +1 -1
- package/coverage/lcov-report/main/app/ticker.ts.html +1 -1
- package/coverage/lcov-report/main/index.html +9 -9
- package/coverage/lcov-report/main/index.ts.html +182 -11
- package/coverage/lcov-report/main/modules/Network/beaconProxy.ts.html +1 -1
- package/coverage/lcov-report/main/modules/Network/fetchProxy.ts.html +21 -6
- package/coverage/lcov-report/main/modules/Network/index.html +6 -6
- package/coverage/lcov-report/main/modules/Network/index.ts.html +1 -1
- package/coverage/lcov-report/main/modules/Network/networkMessage.ts.html +1 -1
- package/coverage/lcov-report/main/modules/Network/utils.ts.html +1 -1
- package/coverage/lcov-report/main/modules/Network/xhrProxy.ts.html +3 -3
- package/coverage/lcov-report/main/modules/attributeSender.ts.html +1 -1
- package/coverage/lcov-report/main/modules/axiosSpy.ts.html +1 -1
- package/coverage/lcov-report/main/modules/conditionsManager.ts.html +112 -67
- package/coverage/lcov-report/main/modules/connection.ts.html +1 -1
- package/coverage/lcov-report/main/modules/console.ts.html +1 -1
- package/coverage/lcov-report/main/modules/constructedStyleSheets.ts.html +1 -1
- package/coverage/lcov-report/main/modules/cssrules.ts.html +1 -1
- package/coverage/lcov-report/main/modules/exception.ts.html +1 -1
- package/coverage/lcov-report/main/modules/featureFlags.ts.html +1 -1
- package/coverage/lcov-report/main/modules/focus.ts.html +1 -1
- package/coverage/lcov-report/main/modules/fonts.ts.html +1 -1
- package/coverage/lcov-report/main/modules/img.ts.html +1 -1
- package/coverage/lcov-report/main/modules/index.html +34 -19
- package/coverage/lcov-report/main/modules/input.ts.html +1 -1
- package/coverage/lcov-report/main/modules/mouse.ts.html +1 -1
- package/coverage/lcov-report/main/modules/network.ts.html +1 -1
- package/coverage/lcov-report/main/modules/performance.ts.html +1 -1
- package/coverage/lcov-report/main/modules/scroll.ts.html +1 -1
- package/coverage/lcov-report/main/modules/selection.ts.html +1 -1
- package/coverage/lcov-report/main/modules/tabs.ts.html +1 -1
- package/coverage/lcov-report/main/modules/tagWatcher.ts.html +307 -0
- package/coverage/lcov-report/main/modules/timing.ts.html +1 -1
- package/coverage/lcov-report/main/modules/userTesting/SignalManager.ts.html +1 -1
- package/coverage/lcov-report/main/modules/userTesting/dnd.ts.html +1 -1
- package/coverage/lcov-report/main/modules/userTesting/index.html +1 -1
- package/coverage/lcov-report/main/modules/userTesting/index.ts.html +1 -1
- package/coverage/lcov-report/main/modules/userTesting/recorder.ts.html +1 -1
- package/coverage/lcov-report/main/modules/userTesting/styles.ts.html +1 -1
- package/coverage/lcov-report/main/modules/userTesting/utils.ts.html +1 -1
- package/coverage/lcov-report/main/modules/viewport.ts.html +1 -1
- package/coverage/lcov-report/main/utils.ts.html +1 -1
- package/coverage/lcov-report/webworker/BatchWriter.ts.html +23 -5
- package/coverage/lcov-report/webworker/MessageEncoder.gen.ts.html +17 -5
- package/coverage/lcov-report/webworker/PrimitiveEncoder.ts.html +1 -1
- package/coverage/lcov-report/webworker/QueueSender.ts.html +18 -6
- package/coverage/lcov-report/webworker/index.html +19 -19
- package/coverage/lcov-report/webworker/index.ts.html +15 -12
- package/coverage/lcov.info +1576 -1355
- package/lib/app/canvas.d.ts +3 -0
- package/lib/app/canvas.js +23 -7
- package/lib/app/index.d.ts +2 -0
- package/lib/app/index.js +15 -6
- package/lib/app/nodes.d.ts +1 -0
- package/lib/app/nodes.js +3 -0
- package/lib/index.d.ts +1 -0
- package/lib/index.js +7 -1
- package/package.json +1 -1
|
@@ -25,28 +25,28 @@
|
|
|
25
25
|
<div class='fl pad1y space-right2'>
|
|
26
26
|
<span class="strong">0% </span>
|
|
27
27
|
<span class="quiet">Statements</span>
|
|
28
|
-
<span class='fraction'>0/
|
|
28
|
+
<span class='fraction'>0/65</span>
|
|
29
29
|
</div>
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
<div class='fl pad1y space-right2'>
|
|
33
33
|
<span class="strong">0% </span>
|
|
34
34
|
<span class="quiet">Branches</span>
|
|
35
|
-
<span class='fraction'>0/
|
|
35
|
+
<span class='fraction'>0/27</span>
|
|
36
36
|
</div>
|
|
37
37
|
|
|
38
38
|
|
|
39
39
|
<div class='fl pad1y space-right2'>
|
|
40
40
|
<span class="strong">0% </span>
|
|
41
41
|
<span class="quiet">Functions</span>
|
|
42
|
-
<span class='fraction'>0/
|
|
42
|
+
<span class='fraction'>0/15</span>
|
|
43
43
|
</div>
|
|
44
44
|
|
|
45
45
|
|
|
46
46
|
<div class='fl pad1y space-right2'>
|
|
47
47
|
<span class="strong">0% </span>
|
|
48
48
|
<span class="quiet">Lines</span>
|
|
49
|
-
<span class='fraction'>0/
|
|
49
|
+
<span class='fraction'>0/64</span>
|
|
50
50
|
</div>
|
|
51
51
|
|
|
52
52
|
|
|
@@ -203,7 +203,11 @@
|
|
|
203
203
|
<a name='L138'></a><a href='#L138'>138</a>
|
|
204
204
|
<a name='L139'></a><a href='#L139'>139</a>
|
|
205
205
|
<a name='L140'></a><a href='#L140'>140</a>
|
|
206
|
-
<a name='L141'></a><a href='#L141'>141</a
|
|
206
|
+
<a name='L141'></a><a href='#L141'>141</a>
|
|
207
|
+
<a name='L142'></a><a href='#L142'>142</a>
|
|
208
|
+
<a name='L143'></a><a href='#L143'>143</a>
|
|
209
|
+
<a name='L144'></a><a href='#L144'>144</a>
|
|
210
|
+
<a name='L145'></a><a href='#L145'>145</a></td><td class="line-coverage quiet"><span class="cline-any cline-no"> </span>
|
|
207
211
|
<span class="cline-any cline-no"> </span>
|
|
208
212
|
<span class="cline-any cline-neutral"> </span>
|
|
209
213
|
<span class="cline-any cline-no"> </span>
|
|
@@ -234,6 +238,10 @@
|
|
|
234
238
|
<span class="cline-any cline-neutral"> </span>
|
|
235
239
|
<span class="cline-any cline-neutral"> </span>
|
|
236
240
|
<span class="cline-any cline-no"> </span>
|
|
241
|
+
<span class="cline-any cline-neutral"> </span>
|
|
242
|
+
<span class="cline-any cline-neutral"> </span>
|
|
243
|
+
<span class="cline-any cline-neutral"> </span>
|
|
244
|
+
<span class="cline-any cline-no"> </span>
|
|
237
245
|
<span class="cline-any cline-no"> </span>
|
|
238
246
|
<span class="cline-any cline-neutral"> </span>
|
|
239
247
|
<span class="cline-any cline-no"> </span>
|
|
@@ -371,6 +379,10 @@ const KEEPALIVE_SIZE_LIMIT = <span class="cstat-no" title="statement not covered
|
|
|
371
379
|
<span class="cstat-no" title="statement not covered" > this.isCompressing = false</span>
|
|
372
380
|
}
|
|
373
381
|
}
|
|
382
|
+
|
|
383
|
+
public <span class="fstat-no" title="function not covered" >getQueueStatus(</span>) {
|
|
384
|
+
<span class="cstat-no" title="statement not covered" > return this.queue.length === 0 && !this.busy</span>
|
|
385
|
+
}
|
|
374
386
|
|
|
375
387
|
<span class="fstat-no" title="function not covered" > authorise(</span>token: string): void {
|
|
376
388
|
<span class="cstat-no" title="statement not covered" > this.token = token</span>
|
|
@@ -490,7 +502,7 @@ const KEEPALIVE_SIZE_LIMIT = <span class="cstat-no" title="statement not covered
|
|
|
490
502
|
<div class='footer quiet pad2 space-top1 center small'>
|
|
491
503
|
Code coverage generated by
|
|
492
504
|
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
|
|
493
|
-
at
|
|
505
|
+
at 2024-01-09T16:51:30.347Z
|
|
494
506
|
</div>
|
|
495
507
|
<script src="../prettify.js"></script>
|
|
496
508
|
<script>
|
|
@@ -25,28 +25,28 @@
|
|
|
25
25
|
<div class='fl pad1y space-right2'>
|
|
26
26
|
<span class="strong">0% </span>
|
|
27
27
|
<span class="quiet">Statements</span>
|
|
28
|
-
<span class='fraction'>0/
|
|
28
|
+
<span class='fraction'>0/452</span>
|
|
29
29
|
</div>
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
<div class='fl pad1y space-right2'>
|
|
33
33
|
<span class="strong">0% </span>
|
|
34
34
|
<span class="quiet">Branches</span>
|
|
35
|
-
<span class='fraction'>0/
|
|
35
|
+
<span class='fraction'>0/378</span>
|
|
36
36
|
</div>
|
|
37
37
|
|
|
38
38
|
|
|
39
39
|
<div class='fl pad1y space-right2'>
|
|
40
40
|
<span class="strong">0% </span>
|
|
41
41
|
<span class="quiet">Functions</span>
|
|
42
|
-
<span class='fraction'>0/
|
|
42
|
+
<span class='fraction'>0/56</span>
|
|
43
43
|
</div>
|
|
44
44
|
|
|
45
45
|
|
|
46
46
|
<div class='fl pad1y space-right2'>
|
|
47
47
|
<span class="strong">0% </span>
|
|
48
48
|
<span class="quiet">Lines</span>
|
|
49
|
-
<span class='fraction'>0/
|
|
49
|
+
<span class='fraction'>0/445</span>
|
|
50
50
|
</div>
|
|
51
51
|
|
|
52
52
|
|
|
@@ -84,13 +84,13 @@
|
|
|
84
84
|
<div class="chart"><div class="cover-fill" style="width: 0%"></div><div class="cover-empty" style="width: 100%"></div></div>
|
|
85
85
|
</td>
|
|
86
86
|
<td data-value="0" class="pct low">0%</td>
|
|
87
|
-
<td data-value="
|
|
87
|
+
<td data-value="73" class="abs low">0/73</td>
|
|
88
88
|
<td data-value="0" class="pct low">0%</td>
|
|
89
|
-
<td data-value="
|
|
89
|
+
<td data-value="16" class="abs low">0/16</td>
|
|
90
90
|
<td data-value="0" class="pct low">0%</td>
|
|
91
91
|
<td data-value="10" class="abs low">0/10</td>
|
|
92
92
|
<td data-value="0" class="pct low">0%</td>
|
|
93
|
-
<td data-value="
|
|
93
|
+
<td data-value="72" class="abs low">0/72</td>
|
|
94
94
|
</tr>
|
|
95
95
|
|
|
96
96
|
<tr>
|
|
@@ -99,13 +99,13 @@
|
|
|
99
99
|
<div class="chart"><div class="cover-fill" style="width: 0%"></div><div class="cover-empty" style="width: 100%"></div></div>
|
|
100
100
|
</td>
|
|
101
101
|
<td data-value="0" class="pct low">0%</td>
|
|
102
|
-
<td data-value="
|
|
102
|
+
<td data-value="145" class="abs low">0/145</td>
|
|
103
103
|
<td data-value="0" class="pct low">0%</td>
|
|
104
|
-
<td data-value="
|
|
104
|
+
<td data-value="279" class="abs low">0/279</td>
|
|
105
105
|
<td data-value="0" class="pct low">0%</td>
|
|
106
106
|
<td data-value="1" class="abs low">0/1</td>
|
|
107
107
|
<td data-value="0" class="pct low">0%</td>
|
|
108
|
-
<td data-value="
|
|
108
|
+
<td data-value="145" class="abs low">0/145</td>
|
|
109
109
|
</tr>
|
|
110
110
|
|
|
111
111
|
<tr>
|
|
@@ -129,13 +129,13 @@
|
|
|
129
129
|
<div class="chart"><div class="cover-fill" style="width: 0%"></div><div class="cover-empty" style="width: 100%"></div></div>
|
|
130
130
|
</td>
|
|
131
131
|
<td data-value="0" class="pct low">0%</td>
|
|
132
|
-
<td data-value="
|
|
132
|
+
<td data-value="65" class="abs low">0/65</td>
|
|
133
133
|
<td data-value="0" class="pct low">0%</td>
|
|
134
|
-
<td data-value="
|
|
134
|
+
<td data-value="27" class="abs low">0/27</td>
|
|
135
135
|
<td data-value="0" class="pct low">0%</td>
|
|
136
|
-
<td data-value="
|
|
136
|
+
<td data-value="15" class="abs low">0/15</td>
|
|
137
137
|
<td data-value="0" class="pct low">0%</td>
|
|
138
|
-
<td data-value="
|
|
138
|
+
<td data-value="64" class="abs low">0/64</td>
|
|
139
139
|
</tr>
|
|
140
140
|
|
|
141
141
|
<tr>
|
|
@@ -144,13 +144,13 @@
|
|
|
144
144
|
<div class="chart"><div class="cover-fill" style="width: 0%"></div><div class="cover-empty" style="width: 100%"></div></div>
|
|
145
145
|
</td>
|
|
146
146
|
<td data-value="0" class="pct low">0%</td>
|
|
147
|
-
<td data-value="
|
|
147
|
+
<td data-value="97" class="abs low">0/97</td>
|
|
148
148
|
<td data-value="0" class="pct low">0%</td>
|
|
149
|
-
<td data-value="
|
|
149
|
+
<td data-value="33" class="abs low">0/33</td>
|
|
150
150
|
<td data-value="0" class="pct low">0%</td>
|
|
151
|
-
<td data-value="
|
|
151
|
+
<td data-value="17" class="abs low">0/17</td>
|
|
152
152
|
<td data-value="0" class="pct low">0%</td>
|
|
153
|
-
<td data-value="
|
|
153
|
+
<td data-value="95" class="abs low">0/95</td>
|
|
154
154
|
</tr>
|
|
155
155
|
|
|
156
156
|
</tbody>
|
|
@@ -161,7 +161,7 @@
|
|
|
161
161
|
<div class='footer quiet pad2 space-top1 center small'>
|
|
162
162
|
Code coverage generated by
|
|
163
163
|
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
|
|
164
|
-
at
|
|
164
|
+
at 2024-01-09T16:51:30.347Z
|
|
165
165
|
</div>
|
|
166
166
|
<script src="../prettify.js"></script>
|
|
167
167
|
<script>
|
|
@@ -25,28 +25,28 @@
|
|
|
25
25
|
<div class='fl pad1y space-right2'>
|
|
26
26
|
<span class="strong">0% </span>
|
|
27
27
|
<span class="quiet">Statements</span>
|
|
28
|
-
<span class='fraction'>0/
|
|
28
|
+
<span class='fraction'>0/97</span>
|
|
29
29
|
</div>
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
<div class='fl pad1y space-right2'>
|
|
33
33
|
<span class="strong">0% </span>
|
|
34
34
|
<span class="quiet">Branches</span>
|
|
35
|
-
<span class='fraction'>0/
|
|
35
|
+
<span class='fraction'>0/33</span>
|
|
36
36
|
</div>
|
|
37
37
|
|
|
38
38
|
|
|
39
39
|
<div class='fl pad1y space-right2'>
|
|
40
40
|
<span class="strong">0% </span>
|
|
41
41
|
<span class="quiet">Functions</span>
|
|
42
|
-
<span class='fraction'>0/
|
|
42
|
+
<span class='fraction'>0/17</span>
|
|
43
43
|
</div>
|
|
44
44
|
|
|
45
45
|
|
|
46
46
|
<div class='fl pad1y space-right2'>
|
|
47
47
|
<span class="strong">0% </span>
|
|
48
48
|
<span class="quiet">Lines</span>
|
|
49
|
-
<span class='fraction'>0/
|
|
49
|
+
<span class='fraction'>0/95</span>
|
|
50
50
|
</div>
|
|
51
51
|
|
|
52
52
|
|
|
@@ -246,7 +246,8 @@
|
|
|
246
246
|
<a name='L181'></a><a href='#L181'>181</a>
|
|
247
247
|
<a name='L182'></a><a href='#L182'>182</a>
|
|
248
248
|
<a name='L183'></a><a href='#L183'>183</a>
|
|
249
|
-
<a name='L184'></a><a href='#L184'>184</a
|
|
249
|
+
<a name='L184'></a><a href='#L184'>184</a>
|
|
250
|
+
<a name='L185'></a><a href='#L185'>185</a></td><td class="line-coverage quiet"><span class="cline-any cline-neutral"> </span>
|
|
250
251
|
<span class="cline-any cline-neutral"> </span>
|
|
251
252
|
<span class="cline-any cline-neutral"> </span>
|
|
252
253
|
<span class="cline-any cline-neutral"> </span>
|
|
@@ -404,6 +405,7 @@
|
|
|
404
405
|
<span class="cline-any cline-no"> </span>
|
|
405
406
|
<span class="cline-any cline-neutral"> </span>
|
|
406
407
|
<span class="cline-any cline-neutral"> </span>
|
|
408
|
+
<span class="cline-any cline-no"> </span>
|
|
407
409
|
<span class="cline-any cline-neutral"> </span>
|
|
408
410
|
<span class="cline-any cline-no"> </span>
|
|
409
411
|
<span class="cline-any cline-no"> </span>
|
|
@@ -546,19 +548,19 @@ let restartTimeoutID: ReturnType<typeof setTimeout>
|
|
|
546
548
|
|
|
547
549
|
<span class="cstat-no" title="statement not covered" > <span class="missing-if-branch" title="if path not taken" >I</span>if (data.type === 'compressed') {</span>
|
|
548
550
|
<span class="cstat-no" title="statement not covered" > <span class="missing-if-branch" title="if path not taken" >I</span>if (!sender) {</span>
|
|
549
|
-
<span class="cstat-no" title="statement not covered" > console.debug('WebWorker: sender not initialised. Compressed batch.')</span>
|
|
551
|
+
<span class="cstat-no" title="statement not covered" > console.debug('OR WebWorker: sender not initialised. Compressed batch.')</span>
|
|
550
552
|
<span class="cstat-no" title="statement not covered" > initiateRestart()</span>
|
|
551
553
|
<span class="cstat-no" title="statement not covered" > return</span>
|
|
552
554
|
}
|
|
553
|
-
<span class="cstat-no" title="statement not covered" > sender.sendCompressed(data.batch)</span>
|
|
555
|
+
<span class="cstat-no" title="statement not covered" > data.batch && sender.sendCompressed(data.batch)</span>
|
|
554
556
|
}
|
|
555
557
|
<span class="cstat-no" title="statement not covered" > <span class="missing-if-branch" title="if path not taken" >I</span>if (data.type === 'uncompressed') {</span>
|
|
556
558
|
<span class="cstat-no" title="statement not covered" > <span class="missing-if-branch" title="if path not taken" >I</span>if (!sender) {</span>
|
|
557
|
-
<span class="cstat-no" title="statement not covered" > console.debug('WebWorker: sender not initialised. Uncompressed batch.')</span>
|
|
559
|
+
<span class="cstat-no" title="statement not covered" > console.debug('OR WebWorker: sender not initialised. Uncompressed batch.')</span>
|
|
558
560
|
<span class="cstat-no" title="statement not covered" > initiateRestart()</span>
|
|
559
561
|
<span class="cstat-no" title="statement not covered" > return</span>
|
|
560
562
|
}
|
|
561
|
-
<span class="cstat-no" title="statement not covered" > sender.sendUncompressed(data.batch)</span>
|
|
563
|
+
<span class="cstat-no" title="statement not covered" > data.batch && sender.sendUncompressed(data.batch)</span>
|
|
562
564
|
}
|
|
563
565
|
|
|
564
566
|
<span class="cstat-no" title="statement not covered" > <span class="missing-if-branch" title="if path not taken" >I</span>if (data.type === 'start') {</span>
|
|
@@ -587,6 +589,7 @@ let restartTimeoutID: ReturnType<typeof setTimeout>
|
|
|
587
589
|
<span class="cstat-no" title="statement not covered" > sender && sender.push(batch)</span>
|
|
588
590
|
},
|
|
589
591
|
data.tabId,
|
|
592
|
+
<span class="fstat-no" title="function not covered" > () =</span>> <span class="cstat-no" title="statement not covered" >postMessage({ type: 'queue_empty' }),</span>
|
|
590
593
|
)
|
|
591
594
|
<span class="cstat-no" title="statement not covered" > <span class="missing-if-branch" title="if path not taken" >I</span>if (sendIntervalID === null) {</span>
|
|
592
595
|
<span class="cstat-no" title="statement not covered" > sendIntervalID = setInterval(finalize, AUTO_SEND_INTERVAL)</span>
|
|
@@ -596,13 +599,13 @@ let restartTimeoutID: ReturnType<typeof setTimeout>
|
|
|
596
599
|
|
|
597
600
|
<span class="cstat-no" title="statement not covered" > <span class="missing-if-branch" title="if path not taken" >I</span>if (data.type === 'auth') {</span>
|
|
598
601
|
<span class="cstat-no" title="statement not covered" > <span class="missing-if-branch" title="if path not taken" >I</span>if (!sender) {</span>
|
|
599
|
-
<span class="cstat-no" title="statement not covered" > console.debug('WebWorker: sender not initialised. Received auth.')</span>
|
|
602
|
+
<span class="cstat-no" title="statement not covered" > console.debug('OR WebWorker: sender not initialised. Received auth.')</span>
|
|
600
603
|
<span class="cstat-no" title="statement not covered" > initiateRestart()</span>
|
|
601
604
|
<span class="cstat-no" title="statement not covered" > return</span>
|
|
602
605
|
}
|
|
603
606
|
|
|
604
607
|
<span class="cstat-no" title="statement not covered" > <span class="missing-if-branch" title="if path not taken" >I</span>if (!writer) {</span>
|
|
605
|
-
<span class="cstat-no" title="statement not covered" > console.debug('WebWorker: writer not initialised. Received auth.')</span>
|
|
608
|
+
<span class="cstat-no" title="statement not covered" > console.debug('OR WebWorker: writer not initialised. Received auth.')</span>
|
|
606
609
|
<span class="cstat-no" title="statement not covered" > initiateRestart()</span>
|
|
607
610
|
<span class="cstat-no" title="statement not covered" > return</span>
|
|
608
611
|
}
|
|
@@ -619,7 +622,7 @@ let restartTimeoutID: ReturnType<typeof setTimeout>
|
|
|
619
622
|
<div class='footer quiet pad2 space-top1 center small'>
|
|
620
623
|
Code coverage generated by
|
|
621
624
|
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
|
|
622
|
-
at
|
|
625
|
+
at 2024-01-09T16:51:30.347Z
|
|
623
626
|
</div>
|
|
624
627
|
<script src="../prettify.js"></script>
|
|
625
628
|
<script>
|