Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Removing unnecesary browser downloads #3103

Merged
merged 1 commit into from
Jul 26, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Removing unnecesary browser downloads
  • Loading branch information
tropicadri committed Jul 26, 2022
commit 81edd099df983278b482b6eb0a77791ab9597f89
3 changes: 1 addition & 2 deletions gulp-tasks/test-integration.js
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down