File tree Expand file tree Collapse file tree 2 files changed +22
-1
lines changed
src/test/scala/org/scalatestplus/selenium Expand file tree Collapse file tree 2 files changed +22
-1
lines changed Original file line number Diff line number Diff line change
1
+ name : CI
2
+
3
+ on : [push, pull_request]
4
+
5
+ jobs :
6
+ test :
7
+ runs-on : macos-latest
8
+ steps :
9
+ - name : Checkout
10
+ uses : actions/checkout@v2
11
+ - name : Setup JDK
12
+ uses : actions/setup-java@v3
13
+ with :
14
+ distribution : temurin
15
+ java-version : 8
16
+ - name : Build and Test
17
+ run : |
18
+ export DISPLAY=:99
19
+ sudo Xvfb -ac :99 -screen 0 1280x1024x24 > /dev/null 2>&1 & # optional
20
+ export MOZ_HEADLESS=1
21
+ sbt -v +test
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ class DriverSpec extends funspec.AnyFunSpec {
8
8
9
9
describe(" Tests grouped using Driver trait" ) {
10
10
11
- trait GoogleSearchSpec extends funspec.AnyFunSpecLike with concurrent.Eventually { this : WebBrowser with Driver =>
11
+ trait GoogleSearchSpec extends funspec.AnyFunSpecLike with concurrent.Eventually with concurrent. IntegrationPatience { this : WebBrowser with Driver =>
12
12
13
13
describe(" google.com" ) {
14
14
You can’t perform that action at this time.
0 commit comments