File tree 3 files changed +4
-4
lines changed 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 38
38
"sinon" : " ^6.0.0" ,
39
39
"strip-ansi" : " ^4.0.0" ,
40
40
"tempy" : " ^0.2.1" ,
41
- "xo" : " ^0.22 .0"
41
+ "xo" : " ^0.23 .0"
42
42
},
43
43
"engines" : {
44
44
"node" : " >=8.3"
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ async function start() {
30
30
minTimeout : 1000 ,
31
31
factor : 2 ,
32
32
} ) ;
33
- } catch ( err ) {
33
+ } catch ( error ) {
34
34
throw new Error ( `Couldn't start mock-server after 2 min` ) ;
35
35
}
36
36
}
@@ -96,7 +96,7 @@ async function mock(
96
96
* @param {Object } expectation The expectation created with `mock` function.
97
97
* @return {Promise } A Promise that resolves if the expectation is met or reject otherwise.
98
98
*/
99
- async function verify ( expectation ) {
99
+ function verify ( expectation ) {
100
100
return client . verify ( expectation ) ;
101
101
}
102
102
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ async function start() {
39
39
minTimeout : 1000 ,
40
40
factor : 2 ,
41
41
} ) ;
42
- } catch ( err ) {
42
+ } catch ( error ) {
43
43
throw new Error ( `Couldn't start npm-docker-couchdb after 2 min` ) ;
44
44
}
45
45
You can’t perform that action at this time.
0 commit comments