You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#3051 introduced the if((-not ($skipTest)) -and $IsWindows) block in test/powershell/engine/Help/HelpSystem.OnlineHelp.Tests.ps1 because our default-browser-discovery code, which was used in Get-Help -Online, didn't work correctly on the Azure code-coverage VM.
After #3281, that code was replaced by calling into ShellExecuteEx. We need to verify if Get-Help -Online works fine now on the Azure code-coverage VM, and if it does then this if block should be removed completely.
#3051 introduced the
if((-not ($skipTest)) -and $IsWindows)block intest/powershell/engine/Help/HelpSystem.OnlineHelp.Tests.ps1because our default-browser-discovery code, which was used inGet-Help -Online, didn't work correctly on the Azure code-coverage VM.After #3281, that code was replaced by calling into
ShellExecuteEx. We need to verify ifGet-Help -Onlineworks fine now on the Azure code-coverage VM, and if it does then thisifblock should be removed completely.