(path)
| 20 | } |
| 21 | |
| 22 | function updateTempFile(path) { |
| 23 | setTimeout(function() { |
| 24 | fs.appendFileSync(path, ' changed'); |
| 25 | }, 125); |
| 26 | } |
| 27 | |
| 28 | function removeTempFile(path) { |
| 29 | setTimeout(function() { |
no outgoing calls
no test coverage detected
searching dependent graphs…