diff --git a/index.js b/index.js index 5479cb9..b329758 100644 --- a/index.js +++ b/index.js @@ -474,6 +474,11 @@ TestRail.prototype.getUsers = function (callback) { return this.apiGet('get_users', callback); }; +// ----- Reports ----- +TestRail.prototype.runReport = function (template_id, callback) { + return this.apiGet('run_report/' + template_id, callback); +}; + // ----------