(object)
| 846 | expect(object.get('foo')).toBe('bar'); |
| 847 | }, |
| 848 | delete(object) { |
| 849 | expect(object.get('foo')).toBe('bar'); |
| 850 | }, |
| 851 | }; |
| 852 | for (const key in calls) { |
| 853 | spyOn(calls, key).and.callThrough(); |
nothing calls this directly
no test coverage detected
searching dependent graphs…