()
| 58 | logger.debug(`Fetching all projects visible in ${config.url}...`); |
| 59 | const { durationMs, data: _projects } = await measure(async () => { |
| 60 | const fetchFn = () => api.Projects.all({ |
| 61 | perPage: 100, |
| 62 | }); |
| 63 | return fetchWithRetry(fetchFn, `all projects in ${config.url}`, logger); |
| 64 | }); |
| 65 | logger.debug(`Found ${_projects.length} projects in ${durationMs}ms.`); |
no outgoing calls
no test coverage detected