()
| 28 | jest.setTimeout(30000); |
| 29 | |
| 30 | async function makeTempDir() { |
| 31 | const sep = path.sep; |
| 32 | const tmpDir = os.tmpdir(); |
| 33 | const tempPath = await fs.promises.mkdtemp(`${tmpDir}${sep}`); |
| 34 | return tempPath; |
| 35 | } |
| 36 | const projectSpec = { |
| 37 | name: 'mocked_starter', |
| 38 | repository: '', |
no outgoing calls
no test coverage detected