Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ctrf-io/ctrf

JSON test results report schema that provides a standardized format for JSON test reports
https://github.com/ctrf-io/ctrf

test-automation test-reporting testing testing-tools

Last synced: 2 days ago
JSON representation

JSON test results report schema that provides a standardized format for JSON test reports

Awesome Lists containing this project

README

        

# CTRF

Generate the same JSON test report, no matter the test framework

CTRF is A JSON test results report with many reporters and plugins supporting modern test automation frameworks.

Documentation website [ctrf.io](https://www.ctrf.io/)

**We need your help to grow CTRF, please follow the [GitHub organisation](https://github.com/ctrf-io) and give our repositories a star ⭐**

**It means a lot to us.**

```json
{
"results": {
"tool": {
"name": "AnyTool"
},
"summary": {
"tests": 1,
"passed": 1,
"failed": 0,
"pending": 0,
"skipped": 0,
"other": 0,
"start": 1706828654274,
"stop": 1706828655782
},
"tests": [
{
"name": "API Status code is 200",
"status": "passed",
"duration": 801
}
],
"environment": {
"appName": "MyApp",
"buildName": "MyApp",
"buildNumber": "100"
}
}
}
```