From a073eb07ae3658e424e9a3bffa92022dd2041f41 Mon Sep 17 00:00:00 2001 From: Max Schmitt Date: Fri, 10 Sep 2021 17:00:24 +0200 Subject: [PATCH] docs(contributing): add note how to execute tests (#600) --- CONTRIBUTING.md | 4 ++++ pom.xml | 3 +++ 2 files changed, 7 insertions(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 0f38c0dc..7563b4a4 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -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 diff --git a/pom.xml b/pom.xml index 38c921e4..35f40d26 100644 --- a/pom.xml +++ b/pom.xml @@ -123,6 +123,9 @@ junit.jupiter.execution.parallel.config.dynamic.factor=0.5 + + false +