Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/ctrf-io/ctrf
- Owner: ctrf-io
- Created: 2024-01-30T21:26:27.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-04-17T20:44:58.000Z (7 months ago)
- Last Synced: 2024-05-28T21:45:27.023Z (6 months ago)
- Topics: test-automation, test-reporting, testing, testing-tools
- Language: TypeScript
- Homepage: https://ctrf.io
- Size: 332 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Contributing: docs/contributing/_category_.json
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"
}
}
}
```