[Ubuntu] Migrate Browsers and Rust tests to Pester (#2323)

* add tests for browsers and rust

* small fix

* fix tests invoking

* small fixes

* resolve conflicts

* fix firefox test
This commit is contained in:
Dibir Magomedsaygitov
2020-12-28 11:34:32 +03:00
committed by GitHub
parent ba0809214b
commit 7c15befd02
5 changed files with 71 additions and 34 deletions

View File

@@ -0,0 +1,19 @@
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
}
}