mirror of
https://github.com/actions/runner-images.git
synced 2025-12-26 19:38:57 +08:00
7 lines
309 B
PowerShell
7 lines
309 B
PowerShell
Import-Module -Name VsSetup -Force
|
|
Describe "InstallProjects" {
|
|
It "InstallProjects exists" {
|
|
$InstallProjects = (Get-VSSetupInstance | Select-VsSetupInstance -Product *).Packages | Where-Object {$_.id -eq 'VSInstallerProjects' }
|
|
$InstallProjects | Should -Not -BeNullOrEmpty
|
|
}
|
|
} |