(value: unknown)
| 136 | export const printReceived = (object: unknown): string => |
| 137 | RECEIVED_COLOR(replaceTrailingSpaces(stringify(object))); |
| 138 | export const printExpected = (value: unknown): string => |
| 139 | EXPECTED_COLOR(replaceTrailingSpaces(stringify(value))); |
| 140 | |
| 141 | export function printWithType<T>( |
| 142 | name: string, |
no test coverage detected