Skip to content

Commit 6c779c2

Browse files
committed
(fix) Fix Flaky Edge Package Test
Add handling to bring edge under Chocolatey management if it was natively installed by a newer server OS. This should ensure that the test is more consistent, delivering the same result regardless of if the Chocolatey package were installed or not.
1 parent a36e731 commit 6c779c2

File tree

1 file changed

+16
-12
lines changed

1 file changed

+16
-12
lines changed

Start-C4bNexusSetup.ps1

+16-12
Original file line numberDiff line numberDiff line change
@@ -101,20 +101,24 @@ process {
101101
choco source add -n 'ChocolateyCore' -s "$((Get-NexusRepository -Name 'ChocolateyCore').url)/index.json" --priority 0 --admin-only
102102

103103
# Install a non-IE browser for browsing the Nexus web portal.
104-
if (-not (Test-Path 'C:\Program Files (x86)\Microsoft\Edge\Application\msedge.exe')) {
104+
if (Test-Path 'C:\Program Files (x86)\Microsoft\Edge\Application\msedge.exe'){
105+
Write-Host "Syncing Microsoft Edge, to bring it under Chocolatey management"
106+
choco sync --id="Microsoft Edge" --package-id="microsoft-edge"
107+
}
108+
else {
105109
Write-Host "Installing Microsoft Edge, to allow viewing the Nexus site"
106-
choco install microsoft-edge -y --source ChocolateyInternal
107-
if ($LASTEXITCODE -eq 0) {
108-
if (Test-Path 'HKLM:\SOFTWARE\Microsoft\Edge') {
109-
$RegArgs = @{
110-
Path = 'HKLM:\SOFTWARE\Microsoft\Edge\'
111-
Name = 'HideFirstRunExperience'
112-
Type = 'Dword'
113-
Value = 1
114-
Force = $true
115-
}
116-
$null = Set-ItemProperty @RegArgs
110+
choco install microsoft-edge -y --source ChocolateyCore
111+
}
112+
if ($LASTEXITCODE -eq 0) {
113+
if (Test-Path 'HKLM:\SOFTWARE\Microsoft\Edge') {
114+
$RegArgs = @{
115+
Path = 'HKLM:\SOFTWARE\Microsoft\Edge\'
116+
Name = 'HideFirstRunExperience'
117+
Type = 'Dword'
118+
Value = 1
119+
Force = $true
117120
}
121+
$null = Set-ItemProperty @RegArgs
118122
}
119123
}
120124

0 commit comments

Comments
 (0)