(modulePath)
| 21 | const KEYCHAIN_PATH = require.resolve('../src/gep/workspaceKeychain.js'); |
| 22 | |
| 23 | function freshRequire(modulePath) { |
| 24 | delete require.cache[modulePath]; |
| 25 | return require(modulePath); |
| 26 | } |
| 27 | |
| 28 | function mkTmpWorkspace(prefix) { |
| 29 | const dir = fs.mkdtempSync(path.join(os.tmpdir(), prefix)); |
no outgoing calls
no test coverage detected