Skip to content

Commit 0fe0507

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 5ca3184 commit 0fe0507

File tree

1 file changed

+17
-12
lines changed

1 file changed

+17
-12
lines changed

Start-C4bNexusSetup.ps1

+17-12
Original file line numberDiff line numberDiff line change
@@ -93,20 +93,25 @@ process {
9393
Invoke-Choco source add -n 'ChocolateyCore' -s "$((Get-NexusRepository -Name 'ChocolateyCore').url)/index.json" --priority 0 --admin-only
9494

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

0 commit comments

Comments
 (0)