Skip to content

Commit a073eb0

Browse files
authored
docs(contributing): add note how to execute tests (#600)
1 parent 2dbc619 commit a073eb0

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

CONTRIBUTING.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,10 @@ Names of published driver archives can be found at https://github.com/microsoft/
3333
```bash
3434
mvn compile
3535
mvn test
36+
# Executing a single test
37+
BROWSER=chromium mvn test -Dtest=TestPageNetworkSizes#shouldHaveTheCorrectResponseBodySize
38+
# Executing a single test class
39+
BROWSER=chromium mvn test -Dtest=TestPageNetworkSizes
3640
```
3741

3842
### Generating API

pom.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,9 @@
123123
junit.jupiter.execution.parallel.config.dynamic.factor=0.5
124124
</configurationParameters>
125125
</properties>
126+
<failIfNoTests>
127+
false
128+
</failIfNoTests>
126129
</configuration>
127130
</plugin>
128131
<plugin>

0 commit comments

Comments
 (0)