()
| 10 | const tempDirs: string[] = [] |
| 11 | |
| 12 | const createTempDir = async () => { |
| 13 | const tempDir = await fs.mkdtemp(path.join(os.tmpdir(), 'dev-proxy-test-')) |
| 14 | tempDirs.push(tempDir) |
| 15 | return tempDir |
| 16 | } |
| 17 | |
| 18 | describe('dev proxy config', () => { |
| 19 | afterEach(async () => { |
no test coverage detected