mirror of
https://github.com/actions/runner-images.git
synced 2026-01-18 01:31:57 +08:00
14 lines
493 B
PowerShell
14 lines
493 B
PowerShell
Describe "SSDTExtensions" {
|
|
#These extensions don't have any proper name in the state.packages.json file, only id is available, which can be found on extension marketplace download page
|
|
|
|
$testExtenions = @(
|
|
@{id = "04a86fc2-dbd5-4222-848e-911638e487fe"}
|
|
@{id = "717ad572-c4b7-435c-c166-c2969777f718"}
|
|
)
|
|
|
|
It "Extensions id=<id>" -TestCases $testExtenions {
|
|
$version = Get-VSExtensionVersion -packageName "${id}"
|
|
$version | Should -Not -BeNullOrEmpty
|
|
}
|
|
}
|