mirror of
https://github.com/actions/runner-images-sangeeth.git
synced 2025-12-20 06:29:50 +00:00
12 lines
506 B
PowerShell
12 lines
506 B
PowerShell
Describe "Vsix" {
|
|
$toolset = Get-ToolsetContent
|
|
$requiredVsixs = $toolset.visualStudio.vsix
|
|
|
|
$allPackages = (Get-VSSetupInstance | Select-VsSetupInstance -Product *).Packages
|
|
$testCases = $requiredVsixs | ForEach-Object { @{ VsixId = $_.Id; AllPackages = $allPackages }}
|
|
|
|
It "VSIX Extension <VsixId>" -TestCases $testCases {
|
|
$objVsix = $AllPackages | Where-Object {$_.id -eq $VsixId } | Select-Object Id, Version
|
|
$objVsix | Should -Not -BeNullOrEmpty
|
|
}
|
|
} |