(val: any, config: any, indentation: any, depth: any, refs: any, printer: any)
| 103 | */ |
| 104 | const customSnapshotSerializer = () => { |
| 105 | function serialize(val: any, config: any, indentation: any, depth: any, refs: any, printer: any): string { |
| 106 | // `printer` is a function that serializes a value using existing plugins. |
| 107 | return `${printer(fixtureVitestSerializer(val), config, indentation, depth, refs)}`; |
| 108 | } |
| 109 | function test(val: any): boolean { |
| 110 | // * If it's a ComponentFixture we apply the transformation rules |
| 111 | return val && isAngularFixture(val); |
nothing calls this directly
no test coverage detected