(chai, utils)
| 216 | } |
| 217 | |
| 218 | export const JestExtend: ChaiPlugin = (chai, utils) => { |
| 219 | utils.addMethod( |
| 220 | chai.expect, |
| 221 | 'extend', |
| 222 | (expect: ExpectStatic, expects: MatchersObject) => { |
| 223 | use(JestExtendPlugin(chai, expect, expects)) |
| 224 | }, |
| 225 | ) |
| 226 | } |
nothing calls this directly
no test coverage detected