We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2dbc619 commit a073eb0Copy full SHA for a073eb0
CONTRIBUTING.md
@@ -33,6 +33,10 @@ Names of published driver archives can be found at https://github.com/microsoft/
33
```bash
34
mvn compile
35
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
40
```
41
42
### Generating API
pom.xml
@@ -123,6 +123,9 @@
123
junit.jupiter.execution.parallel.config.dynamic.factor=0.5
124
</configurationParameters>
125
</properties>
126
+ <failIfNoTests>
127
+ false
128
+ </failIfNoTests>
129
</configuration>
130
</plugin>
131
<plugin>
0 commit comments