export function multimockResponse(uriFragment: string, httpMethod: string, statusCode: number, response?: any, responseDelay?: number) { return { // Convenience so we don't have to explicitly add the regex every time uri: `.*${uriFragment}.*`, httpMethod, statusCode, response, responseDelay } }