1
0
mirror of synced 2026-08-04 22:46:55 +00:00

docs(contributing): add note how to execute tests (#600)

This commit is contained in:
Max Schmitt
2021-09-10 17:00:24 +02:00
committed by GitHub
parent 2dbc6194a3
commit a073eb07ae
2 changed files with 7 additions and 0 deletions
+4
View File
@@ -33,6 +33,10 @@ Names of published driver archives can be found at https://github.com/microsoft/
```bash
mvn compile
mvn test
# Executing a single test
BROWSER=chromium mvn test -Dtest=TestPageNetworkSizes#shouldHaveTheCorrectResponseBodySize
# Executing a single test class
BROWSER=chromium mvn test -Dtest=TestPageNetworkSizes
```
### Generating API
+3
View File
@@ -123,6 +123,9 @@
junit.jupiter.execution.parallel.config.dynamic.factor=0.5
</configurationParameters>
</properties>
<failIfNoTests>
false
</failIfNoTests>
</configuration>
</plugin>
<plugin>