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

26 lines
550 B
PowerShell
Raw Normal View History

Describe "Firefox" -Skip:(Test-IsUbuntu22) {
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" {
2021-04-09 14:50:48 +03:00
"chromium-browser --version" | Should -ReturnZeroExitCode
}
}