(body: Record<string, any> = { foo: 'bar' })
| 45 | * Returns a JSON strigified body. |
| 46 | */ |
| 47 | export function getStringifiedBody(body: Record<string, any> = { foo: 'bar' }): string { |
| 48 | return JSON.stringify(body); |
| 49 | } |
| 50 | |
| 51 | /** |
| 52 | * Creates a test server. |
no outgoing calls
no test coverage detected