(target, prop)
| 252 | } as Record<string, any>, |
| 253 | { |
| 254 | get(target, prop) { |
| 255 | if (prop in target) { |
| 256 | return target[prop as string]; |
| 257 | } |
| 258 | // Return a default mock for any unspecified export |
| 259 | target[prop as string] = createDefaultMock(); |
| 260 | return target[prop as string]; |
| 261 | }, |
| 262 | }, |
| 263 | ); |
| 264 |
no test coverage detected