Skip to main content
GET
/
combined-data
/
test
/
testingStats
/
forRepo
/
:repoDataId
Get Testing Statistics for Repository
curl --request GET \
  --url https://www.api.baselink.tech/combined-data/test/testingStats/forRepo/:repoDataId \
  --header 'bearer: <api-key>'
{
  "testingStats": {},
  "testingStats.repoId": "<string>",
  "testingStats.repoName": "<string>",
  "testingStats.totalTests": 123,
  "testingStats.passingTests": 123,
  "testingStats.failingTests": 123,
  "testingStats.testCoverage": 123
}
Retrieve testing statistics for a specific repository.
testingStats
object
Testing statistics for the repository.
testingStats.repoId
string
The ID of the repository.
testingStats.repoName
string
The name of the repository.
testingStats.totalTests
number
Total number of tests in the repository.
testingStats.passingTests
number
Number of passing tests.
testingStats.failingTests
number
Number of failing tests.
testingStats.testCoverage
number
Test coverage percentage.