node-testrail-api icon indicating copy to clipboard operation
node-testrail-api copied to clipboard

API wrapper for TestRail

Results 19 node-testrail-api issues
Sort by recently updated
recently updated
newest added

Since version 5.7 it is now possible to add attachments via the API. http://docs.gurock.com/testrail-api2/reference-attachments Can you put that in? Greetings Daniel

enhancement

Since recent TestRail update, they introduced pagination, e.g. https://www.gurock.com/testrail/docs/api/reference/tests#gettests We need to use `offset` (Number that sets the position where the response should start from (Optional parameter) (requires TestRail 6.7...

[TestRail 7.2.1 release news](https://discuss.gurock.com/t/bulk-api-endpoint-changes-coming-soon/19537) The newest release for Testrail will update JSON response object to all Bulk API endpoints. Right now before the update is released, it is possible to...

The following code block works with a runId printing: ``` before(function () { testrail.getRuns(/*PROJECT_ID=*/1, /*FILTERS=*/{}, function (err, response, runs) { let runId = runs[0].id console.log('runId:', runId) }); }) ``` This...

This runs a report based on the report's template_id, when setup to be able to be run via API request.

As stated in the https://www.gurock.com/testrail/docs/api/reference/users#getusers Documentation that from TestRail 6.4 and onwards you can pass a project_id parameter to this end point to get only users within the project.

This ensures mocha global variables such as describe do not fail eslint

This is to add support to get and trigger reports on projects

Pretty much as the title says, if you use this package in a typescript project, you get errors saying that there are no type definition for the request library. Easy...

Not sure if this was generated, but we don't need to provide all of these fields for a valid api call.