Skip to content

Commit ce64544

Browse files
committed
file rename
1 parent c391e7e commit ce64544

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
## Running your tests
1515
* To run a sample tests, run `mvn test -P sample-test`
1616
* To run sample tests with local, run `mvn test -P sample-local-test`
17+
* Update `<parallel.count>` in `pom.xml` to set the number of parallel threads
1718

1819
Understand how many parallel sessions you need by using our [Parallel Test Calculator](https://www.browserstack.com/automate/parallel-calculator?ref=github)
1920

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<browserstack-local-java>1.0.6</browserstack-local-java>
1717
<httpclient>4.5.13</httpclient>
1818
<parallel.count>5</parallel.count>
19-
<tests.single>**/tests.SingleTest.java</tests.single>
19+
<tests.single>**/tests.SampleTest.java</tests.single>
2020
</properties>
2121
<dependencies>
2222
<dependency>

src/test/resources/conf/browserstack.conf.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,15 @@
2626
"os": "OS X",
2727
"os_version": "Monterey",
2828
"name": "Test on Safari",
29-
"browser": "playwright-webkit"
29+
"browser": "playwright-webkit",
30+
"browser_version": "latest"
3031
},
3132
{
3233
"os": "OS X",
3334
"os_version": "Ventura",
3435
"name": "Test on Bundled Firefox",
35-
"browser": "playwright-firefox"
36+
"browser": "playwright-firefox",
37+
"browser_version": "latest"
3638
}
3739
]
3840
}

0 commit comments

Comments
 (0)