diff --git a/ASSIGNMENT.md b/ASSIGNMENT.md index d507e6f88..248612ec2 100644 --- a/ASSIGNMENT.md +++ b/ASSIGNMENT.md @@ -1,5 +1,11 @@ # QA Assignment +## Running tests +You can run the Cucumber features from your IDE or via the command line: +```shell +./mvnw -P itest integration-test +``` + ## Finding owners The scenarios for this feature are incomplete or even naive. Please cover more cases in more reliable way. diff --git a/pom.xml b/pom.xml index 4cca338b3..8707d3248 100644 --- a/pom.xml +++ b/pom.xml @@ -411,6 +411,41 @@ + + itest + + + + org.apache.maven.plugins + maven-failsafe-plugin + 2.22.2 + + test/integration + + **/CucumberRunner.java + + + **/*Tests.java + + + + + integration-test + + integration-test + + + + verify + + verify + + + + + + +