diff --git a/images/win/scripts/Tests/Browsers.Tests.ps1 b/images/win/scripts/Tests/Browsers.Tests.ps1 index 6a50af09a..a04423d83 100644 --- a/images/win/scripts/Tests/Browsers.Tests.ps1 +++ b/images/win/scripts/Tests/Browsers.Tests.ps1 @@ -27,12 +27,12 @@ Describe "Chrome" { $versionInfo | Should -Not -BeNullOrEmpty } - It "gupdate is stopped" { + It "gupdate service is stopped" { $svc = Get-Service -Name gupdate $svc.Status | Should -BeExactly Stopped } - It "gupdatem is stopped" { + It "gupdatem service is stopped" { $svc = Get-Service -Name gupdatem $svc.Status | Should -BeExactly Stopped } diff --git a/images/win/scripts/Tests/Git.Tests.ps1 b/images/win/scripts/Tests/Git.Tests.ps1 index 8c52db83c..97100e78f 100644 --- a/images/win/scripts/Tests/Git.Tests.ps1 +++ b/images/win/scripts/Tests/Git.Tests.ps1 @@ -15,10 +15,6 @@ Describe "Git" { (Get-Command -Name $toolName).Source | Should -Match $source } - It "hub is installed" { - "hub --version" | Should -ReturnZeroExitCode - } - It "Git core.symlinks=true option is enabled" { git config core.symlinks | Should -BeExactly true } @@ -28,6 +24,12 @@ Describe "Git" { } } +Describe "Hub" { + It "hub is installed" { + "hub --version" | Should -ReturnZeroExitCode + } +} + Describe "GitVersion" { It "gitversion is installed" { "gitversion /version" | Should -ReturnZeroExitCode