mirror of
https://github.com/actions/runner-images.git
synced 2025-12-15 14:17:22 +00:00
13 lines
530 B
PowerShell
13 lines
530 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 }}
|
|
if ($testCases.Count -gt 0) {
|
|
It "Extension <VsixId>" -TestCases $testCases {
|
|
$objVsix = $AllPackages | Where-Object { $_.id -eq $VsixId }
|
|
$objVsix | Should -Not -BeNullOrEmpty
|
|
}
|
|
}
|
|
} |