(app: App, path: string, data: any, verifyResponse: (err: any, res: request.Response) => any, expectedStatus?: number)
| 36 | } |
| 37 | |
| 38 | export function verifyPostRequest(app: App, path: string, data: any, verifyResponse: (err: any, res: request.Response) => any, expectedStatus?: number) { |
| 39 | return verifyRequest(app, verifyResponse, request => request.post(path).send(data), expectedStatus); |
| 40 | } |
| 41 | |
| 42 | export function verifyFileUploadRequest( |
| 43 | app: App, |
no test coverage detected