(shellName, shellPath)
| 23 | })); |
| 24 | }; |
| 25 | const testCopy = (shellName, shellPath) => { |
| 26 | // Symlink the executable to a path with spaces, to ensure there are no issues |
| 27 | // related to quoting of argv0 |
| 28 | const copyPath = `${tmpPath}\\${shellName}`; |
| 29 | fs.symlinkSync(shellPath, copyPath); |
| 30 | test(copyPath); |
| 31 | }; |
| 32 | |
| 33 | const system32 = `${process.env.SystemRoot}\\System32`; |
| 34 |
no test coverage detected
searching dependent graphs…