(path: string, query: string)
| 64 | } |
| 65 | |
| 66 | function makeGet(path: string, query: string) { |
| 67 | return createMockRequest( |
| 68 | 'GET', |
| 69 | undefined, |
| 70 | {}, |
| 71 | `http://localhost:3000/api/tools/deployments/${path}?${query}` |
| 72 | ) |
| 73 | } |
| 74 | |
| 75 | beforeEach(() => { |
| 76 | vi.clearAllMocks() |
no test coverage detected