(modulePath)
| 34 | } |
| 35 | |
| 36 | function removeModuleFromRequireCache (modulePath) { |
| 37 | delete require.cache[require.resolve(modulePath)] |
| 38 | } |
| 39 | function removeLibModuleCache () { |
| 40 | const libPath = path.resolve(path.join(__dirname, '../../lib')) |
| 41 | Object.keys(require.cache).forEach(key => { |
no outgoing calls
no test coverage detected