(path: string, body: unknown)
| 60 | } |
| 61 | |
| 62 | function makePost(path: string, body: unknown) { |
| 63 | return createMockRequest('POST', body, {}, `http://localhost:3000/api/tools/deployments/${path}`) |
| 64 | } |
| 65 | |
| 66 | function makeGet(path: string, query: string) { |
| 67 | return createMockRequest( |
no test coverage detected