According to cucumber 5 application description it can:
  1. Create test runs
  2. Publish results
  3. Autogenerate test cases
1 and 2 works nice for tests which already presented in qase, but when I run any new tests, they are not posted to Qase as new test cases.
I have to manually create tests in Qase first and then map them with
@caseId={id}
. It's not convenient, as I have hundreds of tests in my code base.
Example command I use to start tests:
mvn clean test -DQASE_ENABLE=true -DQASE_PROJECT_CODE=MyProject -DQASE_RUN_NAME="MY RUN" -DQASE_API_TOKEN=my_token
Am i missing something or is there any workaround?