diff --git a/test/http-mock/cheque-mock.ts b/test/http-mock/cheque-mock.ts index e51bbe96..4f27e91d 100644 --- a/test/http-mock/cheque-mock.ts +++ b/test/http-mock/cheque-mock.ts @@ -10,6 +10,10 @@ export function createChequeMockHttpServer(port: number): Server { const server = createServer((request, response) => { response.writeHead(200, { 'Content-Type': 'application/json' }) + if (request.url === '/') { + response.end('Ethereum Swarm Bee') + } + if (request.url === '/health') { response.end(JSON.stringify(health)) }