mirror of
https://github.com/actions/runner-images.git
synced 2025-12-15 06:08:07 +00:00
* add tests for browsers and rust * small fix * fix tests invoking * small fixes * resolve conflicts * fix firefox test
19 lines
407 B
PowerShell
19 lines
407 B
PowerShell
Describe "Firefox" {
|
|
It "Firefox" {
|
|
"sudo -i firefox --version" | Should -ReturnZeroExitCode
|
|
}
|
|
|
|
It "Geckodriver" {
|
|
"geckodriver --version" | Should -ReturnZeroExitCode
|
|
}
|
|
}
|
|
|
|
Describe "Chrome" {
|
|
It "Chrome" {
|
|
"google-chrome --version" | Should -ReturnZeroExitCode
|
|
}
|
|
|
|
It "Chrome Driver" {
|
|
"chromedriver --version" | Should -ReturnZeroExitCode
|
|
}
|
|
} |