(time: number)
| 15 | const DIR = path.resolve(os.tmpdir(), 'watch_mode_no_access'); |
| 16 | |
| 17 | const sleep = (time: number) => |
| 18 | new Promise(resolve => setTimeout(resolve, time)); |
| 19 | |
| 20 | beforeEach(() => cleanup(DIR)); |
| 21 | afterAll(() => cleanup(DIR)); |
no outgoing calls
no test coverage detected