updated README.md

This commit is contained in:
Serafym Tuhai 2022-11-22 18:12:19 +02:00
parent 17d6522571
commit f3e927e9c5
2 changed files with 12 additions and 5 deletions

View File

@ -30,9 +30,14 @@ As result, in REPOSITORY column, next images should be present:
mvn clean install -DblackBoxTests.skip=false -DblackBoxTests.hybridMode=true mvn clean install -DblackBoxTests.skip=false -DblackBoxTests.hybridMode=true
To run the black box tests with using local env run tests in the [msa/black-box-tests](../black-box-tests) directory with runLocal property: - To run the black box tests with using local env run tests in the [msa/black-box-tests](../black-box-tests) directory with runLocal property:
mvn clean install -DblackBoxTests.skip=false -DrunLocal=true mvn clean install -DblackBoxTests.skip=false -DrunLocal=true
- To run ui tests run tests in the [msa/black-box-tests](../black-box-tests) directory specifying suiteFile property:
mvn clean install -DblackBoxTests.skip=false -DsuiteFile=src/test/resources/smokeTests.xml

View File

@ -17,9 +17,11 @@
--> -->
<!DOCTYPE suite SYSTEM "https://testng.org/testng-1.0.dtd"> <!DOCTYPE suite SYSTEM "https://testng.org/testng-1.0.dtd">
<suite name="Black-box tests"> <suite name="Black-box tests">
<suite-files> <test verbose="2" name="Connectivity tests" preserve-order="false">
<suite-file path="connectivity.xml"/> <packages>
<suite-file path="smokesCustomer.xml"/> <package name="org.thingsboard.server.msa.connectivity" />
</suite-files> </packages>
</test>
</suite> </suite>