(res)
| 14 | const localFolder = __dirname; |
| 15 | |
| 16 | function writeNotFound(res) { |
| 17 | res.writeHead(404, {'Content-Type': 'text/html'}); |
| 18 | res.end('<h1>404, Not Found!</h1>'); |
| 19 | } |
| 20 | |
| 21 | function requestHandler(req, res) { |
| 22 | if (req.url === '/close') { |
no test coverage detected
searching dependent graphs…