(path: string, options: RequestOptions = {})
| 222 | } |
| 223 | |
| 224 | async deleteWithMeta<T>(path: string, options: RequestOptions = {}): Promise<RequestResult<T>> { |
| 225 | return this.requestWithMeta<T>('DELETE', path, options); |
| 226 | } |
| 227 | |
| 228 | /** |
| 229 | * POST /api/cli/v1/tests/{testId}/runs |
nothing calls this directly
no test coverage detected