()
| 1539 | const chunk = 'B'.repeat(1024); |
| 1540 | let sent = 0; |
| 1541 | const writeNext = () => { |
| 1542 | if (sent >= 8) { |
| 1543 | return res.end(); |
| 1544 | } |
| 1545 | sent++; |
| 1546 | res.write(chunk, writeNext); |
| 1547 | }; |
| 1548 | writeNext(); |
| 1549 | }, |
| 1550 | { port: SERVER_PORT } |
no test coverage detected