Skip to content

Commit

Permalink
Fix test-browser failures by unpinning chrome version (#12509)
Browse files Browse the repository at this point in the history
* Remove pinned chrome version from test-browser
  • Loading branch information
SnailBones authored and stepankuzmin committed Feb 4, 2023
1 parent 5c2d6cf commit edefa72
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -381,9 +381,7 @@ jobs:
steps:
- attach_workspace:
at: ~/
- browser-tools/install-browser-tools:
chrome-version: 91.0.4472.164
- run: yarn run build-dev
- browser-tools/install-browser-tools
- run: yarn run build-token
- run:
name: Test Chrome
Expand Down Expand Up @@ -488,7 +486,7 @@ jobs:
$uri = "https://dl.google.com/chrome/install/latest/chrome_installer.exe";
$path = "$PSScriptRoot\ChromeSetup.exe";
Invoke-WebRequest -Uri $uri -OutFile $path;
Start-Process $path /install -NoNewWindow -Wait;
Start-Process $path /install -NoNewWindow -Wait;
Remove-Item $path;
$chromeInstalled = (Get-Item (Get-ItemProperty 'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\chrome.exe').'(Default)').VersionInfo;
Expand Down

0 comments on commit edefa72

Please sign in to comment.