Skip to content

Latest commit

 

History

History
50 lines (35 loc) · 772 Bytes

README.md

File metadata and controls

50 lines (35 loc) · 772 Bytes

Test Automation

Folder Structure

The folder structure for test automation will be as follows:

tests
├── src
│    └── main
|    └── test
|    |   └──resources
├── .gitignore
├── pom.xml
└── README.md

To run locally

Docker-compose up and then run mvn command from the root

mvn verify -f tests/pom.xml

Running the tests create an html report here

Cucumber Tags

We support running the tests with the current tags:

@frontend

Tags

Using tags will only run the specified tests.

cd tests
mvn verify -Dcucumber.options="--tags '@backend'"
mvn verify -Dcucumber.options="--tags '@frontend'"