( label: string, expected: Function, )
| 91 | ): string => `${printConstructorName(label, expected, false, true)}\n`; |
| 92 | |
| 93 | export const printExpectedConstructorNameNot = ( |
| 94 | label: string, |
| 95 | expected: Function, |
| 96 | ): string => `${printConstructorName(label, expected, true, true)}\n`; |
| 97 | |
| 98 | export const printReceivedConstructorName = ( |
| 99 | label: string, |
no test coverage detected