(rawTarget: any[], times: number)
| 118 | } |
| 119 | |
| 120 | function expectHaveBeenCalledTimes(rawTarget: any[], times: number) { |
| 121 | identityMethods.forEach(key => { |
| 122 | expect(rawTarget[key]).toHaveBeenCalledTimes(times) |
| 123 | }) |
| 124 | } |
| 125 | |
| 126 | test('should be called once with a non-existent raw value', () => { |
| 127 | const reactiveArr = reactive([]) |
no test coverage detected