(other: unknown)
| 158 | } |
| 159 | |
| 160 | asymmetricMatch(other: unknown) { |
| 161 | const { pass } = expectAssertion.call( |
| 162 | this.getMatcherContext(expect), |
| 163 | other, |
| 164 | ...this.sample, |
| 165 | ) as SyncExpectationResult |
| 166 | |
| 167 | return this.inverse ? !pass : pass |
| 168 | } |
| 169 | |
| 170 | toString() { |
| 171 | return `${this.inverse ? 'not.' : ''}${expectAssertionName}` |
no outgoing calls
no test coverage detected