From 81edd099df983278b482b6eb0a77791ab9597f89 Mon Sep 17 00:00:00 2001 From: Adriana Jara Salazar Date: Tue, 26 Jul 2022 11:40:18 -0700 Subject: [PATCH] Removing unnecesary browser downloads --- 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) {