File tree 2 files changed +6
-1
lines changed
2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 72
72
"chai" : " ^4.3.4" ,
73
73
"chai-as-promised" : " ^7.1.1" ,
74
74
"chai-bytes" : " ^0.1.2" ,
75
+ "chai-checkmark" : " ^1.0.1" ,
75
76
"chai-parentheses" : " ^0.0.2" ,
76
77
"chai-string" : " ^1.5.0" ,
77
78
"chai-subset" : " ^1.6.0" ,
Original file line number Diff line number Diff line change @@ -6,13 +6,16 @@ const chaiParentheses = require('chai-parentheses')
6
6
const chaiSubset = require ( 'chai-subset' )
7
7
const chaiBytes = require ( 'chai-bytes' )
8
8
const chaiString = require ( 'chai-string' )
9
+ // @ts -expect-error no types
10
+ const chaiCheckmark = require ( 'chai-checkmark' )
9
11
10
12
// Do not reorder these statements - https://github.com/chaijs/chai/issues/1298
11
13
chai . use ( chaiAsPromised )
12
14
chai . use ( chaiParentheses )
13
15
chai . use ( chaiSubset )
14
16
chai . use ( chaiBytes )
15
17
chai . use ( chaiString )
18
+ chai . use ( chaiCheckmark )
16
19
17
20
const expect = chai . expect
18
21
const assert = chai . assert
@@ -28,7 +31,8 @@ module.exports = {
28
31
chaiParentheses,
29
32
chaiSubset,
30
33
chaiBytes,
31
- chaiString
34
+ chaiString,
35
+ chaiCheckmark
32
36
}
33
37
}
34
38
You can’t perform that action at this time.
0 commit comments