(relativePath: string)
| 43 | }); |
| 44 | |
| 45 | function mkdir(relativePath: string): string { |
| 46 | const dir = path.join(tempDir, relativePath); |
| 47 | fs.mkdirSync(dir, { recursive: true }); |
| 48 | return dir; |
| 49 | } |
| 50 | |
| 51 | async function registerStore( |
| 52 | id: string, |
no outgoing calls
no test coverage detected