(path, options = {})
| 405 | } |
| 406 | |
| 407 | get(path, options = {}) { |
| 408 | return this.request(path, { ...options, method: 'GET' }); |
| 409 | } |
| 410 | |
| 411 | post(path, body, options = {}) { |
| 412 | return this.request(path, { ...options, method: 'POST', body }); |
no test coverage detected