| 12 | type DoesItAPIClient = any // TODO: Add proper type from client.js |
| 13 | |
| 14 | interface APICase { |
| 15 | generateOptions: Record<string, unknown>; |
| 16 | method(api: DoesItAPIClient): any; |
| 17 | expected: Record<string, unknown> | ((result: any) => boolean); |
| 18 | } |
| 19 | |
| 20 | type TestCase = [string, APICase] |
| 21 |
no outgoing calls
no test coverage detected