MCPcopy Create free account
hub / github.com/TestSprite/testsprite-cli / patch

Method patch

src/lib/http.ts:195–197  ·  view source on GitHub ↗
(path: string, options: RequestOptions = {})

Source from the content-addressed store, hash-verified

193 }
194
195 async patch<T>(path: string, options: RequestOptions = {}): Promise<T> {
196 return this.requestWithMeta<T>('PATCH', path, options).then(r => r.body);
197 }
198
199 async delete<T>(path: string, options: RequestOptions = {}): Promise<T> {
200 return this.requestWithMeta<T>('DELETE', path, options).then(r => r.body);

Callers

nothing calls this directly

Calls 1

requestWithMetaMethod · 0.95

Tested by

no test coverage detected