| 3 | |
| 4 | describe('/test/customClient.test.ts', () => { |
| 5 | class CustomCOS { |
| 6 | constructor(public config: any) {} |
| 7 | |
| 8 | request(options: any) { |
| 9 | return Promise.resolve(options.Action); |
| 10 | } |
| 11 | } |
| 12 | |
| 13 | it('should create a custom client from client config', async () => { |
| 14 | const app = await createLightApp('', { |
nothing calls this directly
no outgoing calls
no test coverage detected