(uri, requestBody, options)
| 131 | } |
| 132 | |
| 133 | get(uri, requestBody, options) { |
| 134 | return this.intercept(uri, 'GET', requestBody, options) |
| 135 | } |
| 136 | |
| 137 | post(uri, requestBody, options) { |
| 138 | return this.intercept(uri, 'POST', requestBody, options) |
no test coverage detected