(
expected: unknown,
received: unknown,
expand: boolean,
)
| 864 | describe('printSnapshotAndReceived', () => { |
| 865 | // Simulate default serialization. |
| 866 | const testWithStringify = ( |
| 867 | expected: unknown, |
| 868 | received: unknown, |
| 869 | expand: boolean, |
| 870 | ): string => |
| 871 | printSnapshotAndReceived( |
| 872 | serialize(expected), |
| 873 | serialize(received), |
| 874 | received, |
| 875 | expand, |
| 876 | ); |
| 877 | |
| 878 | // Simulate custom raw string serialization. |
| 879 | const testWithoutStringify = ( |
no test coverage detected