File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 69
69
"@types/debug" : " ^4.1.5" ,
70
70
"@types/rimraf" : " ^3.0.2" ,
71
71
"@types/varint" : " ^6.0.0" ,
72
- "aegir" : " ^35 .0.1" ,
72
+ "aegir" : " ^36 .0.1" ,
73
73
"assert" : " ^2.0.0" ,
74
74
"aws-sdk" : " ^2.884.0" ,
75
75
"blockstore-core" : " ^1.0.2" ,
Original file line number Diff line number Diff line change 90
90
"@types/debug" : " ^4.1.5" ,
91
91
"@types/proper-lockfile" : " ^4.1.1" ,
92
92
"@types/rimraf" : " ^3.0.0" ,
93
- "aegir" : " ^35 .0.2 " ,
93
+ "aegir" : " ^36 .0.1 " ,
94
94
"assert" : " ^2.0.0" ,
95
95
"blockstore-core" : " ^1.0.2" ,
96
96
"blockstore-datastore-adapter" : " ^2.0.1" ,
Original file line number Diff line number Diff line change @@ -182,7 +182,7 @@ class Repo {
182
182
try {
183
183
await this . _closeLock ( )
184
184
this . _lockfile = null
185
- } catch ( err2 ) {
185
+ } catch ( /** @type { any } */ err2 ) {
186
186
log ( 'error removing lock' , err2 )
187
187
}
188
188
}
Original file line number Diff line number Diff line change @@ -211,7 +211,7 @@ export default (repo) => {
211
211
afterEach ( async ( ) => {
212
212
try {
213
213
await otherRepo . close ( )
214
- } catch ( _ ) {
214
+ } catch ( /** @type { any } */ _ ) {
215
215
// ignore error
216
216
}
217
217
} )
@@ -309,7 +309,7 @@ export default (repo) => {
309
309
try {
310
310
await otherRepo . close ( )
311
311
throw new Error ( 'Should have thrown' )
312
- } catch ( err2 ) {
312
+ } catch ( /** @type { any } */ err2 ) {
313
313
expect ( err2 ) . to . equal ( err )
314
314
}
315
315
} )
@@ -352,7 +352,7 @@ export default (repo) => {
352
352
try {
353
353
await otherRepo . open ( )
354
354
throw new Error ( 'Should have thrown' )
355
- } catch ( err2 ) {
355
+ } catch ( /** @type { any } */ err2 ) {
356
356
expect ( err2 ) . to . equal ( err )
357
357
}
358
358
} )
You can’t perform that action at this time.
0 commit comments