From 0c146bf19bc17de174cb23593575d8a823e19a99 Mon Sep 17 00:00:00 2001 From: "Andrey Mishechkin (GITHUB INC)" Date: Fri, 11 Sep 2020 15:07:47 +0400 Subject: [PATCH] Test name has been changed to "VSIX Extension " --- images/win/scripts/Tests/Vsix.Tests.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/images/win/scripts/Tests/Vsix.Tests.ps1 b/images/win/scripts/Tests/Vsix.Tests.ps1 index 478188f7..6d6ca22c 100644 --- a/images/win/scripts/Tests/Vsix.Tests.ps1 +++ b/images/win/scripts/Tests/Vsix.Tests.ps1 @@ -5,7 +5,7 @@ Describe "Vsix" { $allPackages = (Get-VSSetupInstance | Select-VsSetupInstance -Product *).Packages $testCases = $requiredVsixs | ForEach-Object { @{ VsixId = $_.Id; AllPackages = $allPackages }} - It "" -TestCases $testCases { + It "VSIX Extension " -TestCases $testCases { $objVsix = $AllPackages | Where-Object {$_.id -eq $VsixId } | Select-Object Id, Version $objVsix | Should -Not -BeNullOrEmpty }