Skip to content

Commit 44161e0

Browse files
authored
chore: fix Maven test commands (#1832)
1 parent 954b1c4 commit 44161e0

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ scripts/download_driver.sh
3232
mvn compile
3333
mvn test
3434
# Executing a single test
35-
BROWSER=chromium mvn test --projects=playwright -Dtest=TestPageNetworkSizes#shouldHaveTheCorrectResponseBodySize
35+
BROWSER=chromium mvn test -Dtest=TestPageNetworkSizes#shouldHaveTheCorrectResponseBodySize
3636
# Executing a single test class
37-
BROWSER=chromium mvn test --projects=playwright -Dtest=TestPageNetworkSizes
37+
BROWSER=chromium mvn test -Dtest=TestPageNetworkSizes
3838
```
3939

4040
### Generating API

pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -170,6 +170,7 @@
170170
junit.jupiter.execution.parallel.config.dynamic.factor=0.5
171171
</configurationParameters>
172172
</properties>
173+
<failIfNoSpecifiedTests>false</failIfNoSpecifiedTests>
173174
<failIfNoTests>false</failIfNoTests>
174175
<rerunFailingTestsCount>${env.PW_MAX_RETRIES}</rerunFailingTestsCount>
175176
<!-- Activate the use of TCP to transmit events to the plugin and avoid

0 commit comments

Comments
 (0)