( label: string, received: Function, )
| 96 | ): string => `${printConstructorName(label, expected, true, true)}\n`; |
| 97 | |
| 98 | export const printReceivedConstructorName = ( |
| 99 | label: string, |
| 100 | received: Function, |
| 101 | ): string => `${printConstructorName(label, received, false, false)}\n`; |
| 102 | |
| 103 | // Do not call function if received is equal to expected. |
| 104 | export const printReceivedConstructorNameNot = ( |
no test coverage detected