mirror of
https://github.com/actions/runner-images.git
synced 2025-12-20 06:35:47 +00:00
* [macOS] Fail Pester tests on error * return it back * added all files for testing * common utils path changed * linux scripts shouldn't be touched
13 lines
291 B
PowerShell
13 lines
291 B
PowerShell
Describe "Git" {
|
|
It "git is installed" {
|
|
"git --version" | Should -ReturnZeroExitCode
|
|
}
|
|
|
|
It "git lfs is installed" {
|
|
"git lfs version" | Should -ReturnZeroExitCode
|
|
}
|
|
|
|
It "hub CLI is installed" {
|
|
"hub --version" | Should -ReturnZeroExitCode
|
|
}
|
|
} |