Skip to content

Commit 84d95e8

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 74eb5f1 commit 84d95e8

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

9393
# Install a non-IE browser for browsing the Nexus web portal.
94-
if (-not (Test-Path 'C:\Program Files (x86)\Microsoft\Edge\Application\msedge.exe')) {
94+
if (Test-Path 'C:\Program Files (x86)\Microsoft\Edge\Application\msedge.exe'){
95+
Write-Host "Syncing Microsoft Edge, to bring it under Chocolatey management"
96+
choco sync --id="Microsoft Edge" --package-id="microsoft-edge"
97+
}
98+
else {
9599
Write-Host "Installing Microsoft Edge, to allow viewing the Nexus site"
96-
choco install microsoft-edge -y --source ChocolateyInternal
97-
if ($LASTEXITCODE -eq 0) {
98-
if (Test-Path 'HKLM:\SOFTWARE\Microsoft\Edge') {
99-
$RegArgs = @{
100-
Path = 'HKLM:\SOFTWARE\Microsoft\Edge\'
101-
Name = 'HideFirstRunExperience'
102-
Type = 'Dword'
103-
Value = 1
104-
Force = $true
105-
}
106-
$null = Set-ItemProperty @RegArgs
100+
choco install microsoft-edge -y --source ChocolateyCore
101+
}
102+
if ($LASTEXITCODE -eq 0) {
103+
if (Test-Path 'HKLM:\SOFTWARE\Microsoft\Edge') {
104+
$RegArgs = @{
105+
Path = 'HKLM:\SOFTWARE\Microsoft\Edge\'
106+
Name = 'HideFirstRunExperience'
107+
Type = 'Dword'
108+
Value = 1
109+
Force = $true
107110
}
111+
$null = Set-ItemProperty @RegArgs
108112
}
109113
}
110114

0 commit comments

Comments
 (0)