(body)
| 20 | } |
| 21 | |
| 22 | function mkRes(body) { |
| 23 | return { |
| 24 | ok: true, |
| 25 | status: 200, |
| 26 | json: async () => body, |
| 27 | text: async () => JSON.stringify(body), |
| 28 | }; |
| 29 | } |
| 30 | |
| 31 | describe('validator daemon', function () { |
| 32 | const originalEnv = { ...process.env }; |
no outgoing calls
no test coverage detected