From 592af127618688948d8af2a2c1d22fb4b5b59e90 Mon Sep 17 00:00:00 2001 From: Adriana Jara <32825533+tropicadri@users.noreply.github.com> Date: Tue, 26 Jul 2022 12:49:31 -0700 Subject: [PATCH] Removing unnecesary browser downloads (#3103) --- gulp-tasks/test-integration.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/gulp-tasks/test-integration.js b/gulp-tasks/test-integration.js index a931c00aa..28ae60297 100644 --- a/gulp-tasks/test-integration.js +++ b/gulp-tasks/test-integration.js @@ -113,10 +113,9 @@ async function test_integration() { logHelper.log(`Downloading browsers...`); const expiration = 24; + // We are only running tests in stable, see bellow for reasons. await seleniumAssistant.downloadLocalBrowser('chrome', 'stable', expiration); - await seleniumAssistant.downloadLocalBrowser('chrome', 'beta', expiration); await seleniumAssistant.downloadLocalBrowser('firefox', 'stable', expiration); - await seleniumAssistant.downloadLocalBrowser('firefox', 'beta', expiration); const packagesToTest = glob.sync(`test/${global.packageOrStar}/integration`); if (packagesToTest.length === 0) {