Node-TestRail
Node-TestRail copied to clipboard
update_run does not support array of case ids
The Testrail API documentation indicates that update_run is able to accept array of case ids however this does not seem to be the case in your documentation/node_module.
Excerpt from http://docs.gurock.com/testrail-api2/reference-runs:
The following example updates a test run to use a manual test case selection:
{ "include_all": false, "case_ids": [1, 2, 3, 5, 8] }
facing the same problem when creating new run all test cases related to the suite are added to the run obj how can we control the number of cases in the run
Came across the same issue and created a fork since this project seems to be abandoned. Feel free to give it a try: https://github.com/sumcumo/Node-TestRail
Also the fork is using axios
instead of request
to keep its fingerprint smaller.