File tree 3 files changed +3
-1
lines changed
3 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -308,6 +308,7 @@ export class BaseNode {
308
308
let maxAdded = 0
309
309
await this . log . each ( { order : 'added' } , ( action , meta ) => {
310
310
if ( meta . added <= lastSynced ) return false
311
+ /* c8 ignore next */
311
312
if ( ! this . syncFilter ( action , meta ) ) return undefined
312
313
if ( this . options . onSend ) {
313
314
promises . push (
Original file line number Diff line number Diff line change @@ -44,6 +44,7 @@ async function all(request, list) {
44
44
if ( ! list ) list = [ ]
45
45
let page = await request
46
46
list = page . entries . concat ( list )
47
+ /* c8 ignore next */
47
48
return page . next ? all ( page . next ( ) , list ) : list
48
49
}
49
50
Original file line number Diff line number Diff line change @@ -8,8 +8,8 @@ export class WsConnection {
8
8
this . Class = Class
9
9
} else if ( typeof WebSocket !== 'undefined' ) {
10
10
this . Class = WebSocket
11
+ /* c8 ignore next 3 */
11
12
} else {
12
- /* c8 ignore next 2 */
13
13
throw new Error ( 'No WebSocket support' )
14
14
}
15
15
this . url = url
You can’t perform that action at this time.
0 commit comments