()
| 71 | it('should memoize the snapshot function', () => { |
| 72 | let readCount = 0; |
| 73 | function source(): ResourceSnapshot<string> { |
| 74 | readCount++; |
| 75 | return { |
| 76 | status: 'resolved', |
| 77 | value: 'test', |
| 78 | }; |
| 79 | } |
| 80 | |
| 81 | const res = resourceFromSnapshots(source); |
| 82 |
no outgoing calls
no test coverage detected
searching dependent graphs…