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 * [macOS] Pester tests invokation after install * fix nitpicks * CocoaPods fix
16 lines
366 B
PowerShell
16 lines
366 B
PowerShell
Describe "Mongo" {
|
|
It "mongodb" {
|
|
"mongo --version" | Should -ReturnZeroExitCode
|
|
"mongod --version"| Should -ReturnZeroExitCode
|
|
}
|
|
}
|
|
|
|
Describe "PostgreSQL" {
|
|
It "PostgreSQL-Client" {
|
|
"psql --version" | Should -ReturnZeroExitCode
|
|
}
|
|
|
|
It "PostgreSQL-Server" {
|
|
"pg_config --version" | Should -ReturnZeroExitCode
|
|
}
|
|
} |