mirror of
https://github.com/actions/runner-images.git
synced 2025-12-15 06:08:07 +00:00
* fix chromium installation * fix chromium * added symlink Co-authored-by: Nikita Bykov <v-nibyko@microsoft.com>
26 lines
526 B
PowerShell
26 lines
526 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
|
|
}
|
|
}
|
|
|
|
Describe "Chromium" {
|
|
It "Chromium" {
|
|
"chromium-browser --version" | Should -ReturnZeroExitCode
|
|
}
|
|
}
|