Files
runner-images/images/linux/scripts/tests/Browsers.Tests.ps1
T

25 lines
547 B
PowerShell
Raw Normal View History

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" -Skip:(-not (Test-IsUbuntu20)) {
It "Chromium" {
"chromium --version" | Should -ReturnZeroExitCode
}
}