(x: object)
| 166 | }); |
| 167 | |
| 168 | const formUrlEncoded = (x: object) => |
| 169 | Object.keys(x).reduce( |
| 170 | // @ts-ignore |
| 171 | (p, c) => p + `&${c}=${encodeURIComponent(x[c])}`, |
| 172 | '' |
| 173 | ); |
| 174 | |
| 175 | it('body - form data', async () => { |
| 176 | // ARRANGE |
no outgoing calls
no test coverage detected