(path)
| 16 | var tempFileContent = 'A test generated this file and it is safe to delete'; |
| 17 | |
| 18 | function createTempFile(path) { |
| 19 | fs.writeFileSync(path, tempFileContent); |
| 20 | } |
| 21 | |
| 22 | function updateTempFile(path) { |
| 23 | setTimeout(function() { |
no outgoing calls
no test coverage detected
searching dependent graphs…