Tests/GenXdev.Software/EnsureVSCodeInstallation.Tests.ps1
|
############################################################################### # Part of PowerShell module : GenXdev.Software # Original cmdlet filename : EnsureVSCodeInstallation.Tests.ps1 # Original author : René Vaessen / GenXdev # Version : 3.28.2026 ############################################################################### Pester\BeforeAll { } Pester\Describe "EnsureVSCodeInstallation" { Pester\It "Should install successfully" -Skip:(-not ($Global:AllowLongRunningTests -eq $true)) { { GenXdev\EnsureVSCodeInstallation -AutoConsent -SessionOnly ` -ErrorAction Stop } | Pester\Should -Not -Throw } } |