(modulePath)
| 5 | const path = require('path'); |
| 6 | |
| 7 | function freshRequire(modulePath) { |
| 8 | const resolved = require.resolve(modulePath); |
| 9 | delete require.cache[resolved]; |
| 10 | return require(resolved); |
| 11 | } |
| 12 | |
| 13 | describe('localStateAwareness', () => { |
| 14 | let tmpDir; |
no outgoing calls
no test coverage detected