Skip to content

Commit c7fe463

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 fab94c4 commit c7fe463

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
@@ -98,20 +98,24 @@ process {
9898
choco source add -n 'ChocolateyCore' -s "$((Get-NexusRepository -Name 'ChocolateyCore').url)/index.json" --priority 0 --admin-only
9999

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

0 commit comments

Comments
 (0)