in lib/downloadAllSessionScreenshots.js [26:33]
function fetchBuilds() {
const buildsURL = 'https://www.browserstack.com/automate/builds.json';
return axios.get(buildsURL, apiAuth)
.catch((err) => {
console.error('Error occurred while fetching builds', err);
});
}