mirror of
https://github.com/actions/runner-images.git
synced 2025-12-20 06:35:47 +00:00
* rework chromium installation * added GetChromiumRevision function * changed getting chrome version * fixed GetChromiumRevision function * fixed CHROME_VERSION variable * move chromium installation to google-chrome.sh * added -qq for unzip * added comments to GetChromiumRevision function * updated tests and sofware report Co-authored-by: Nikita Bykov <v-nibyko@microsoft.com>
26 lines
518 B
PowerShell
26 lines
518 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 --version" | Should -ReturnZeroExitCode
|
|
}
|
|
}
|