(pathToDir)
| 21 | createDirectory('symlinked/third/node_modules'); |
| 22 | } |
| 23 | function createDirectory(pathToDir) { |
| 24 | if (!fs.existsSync(pathToDir)) { |
| 25 | fs.mkdirSync(pathToDir); |
| 26 | } |
| 27 | } |
| 28 | function linkDirectories() { |
| 29 | fs.symlinkSync('../../second', 'symlinked/first/node_modules/second', 'dir'); |
| 30 | fs.symlinkSync('../../third', 'symlinked/first/node_modules/third', 'dir'); |
no outgoing calls
no test coverage detected