Skip to content

Commit

Permalink
Update README reflecting to current changes in module-metadata-file
Browse files Browse the repository at this point in the history
  • Loading branch information
Chohee Kim committed Dec 5, 2019
1 parent 417f7e0 commit 73fb045
Showing 1 changed file with 16 additions and 7 deletions.
23 changes: 16 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -153,9 +153,12 @@ It creates a json file, `module-metadata-<timestamp>.json`, which contains an ar
```json
[
{
"name": "Module-name",
"moduleName": "Module-name",
"total": "Total number of tests in the module",
"duration": "ms in Total duration to execute the module"
"passed": "A number of passed tests in the module",
"failed": "A number of failed tests in the module",
"duration": "ms in Total duration to execute the module",
"failedTests": "A list of failed tests"
}
]
```
Expand All @@ -164,14 +167,20 @@ and it looks something like below:
```json
[
{
"name": "Slowest Module",
"moduleName": "Slowest-module",
"total": 12,
"duration": 2159
"passed": 11,
"failed": 1,
"duration": 153,
"failedTests": ["failed-test-1"]
},
{
"name": "Fastest Module",
"total": 9,
"duration": 125
"moduleName": "Fastest-module",
"total": 2,
"passed": 1,
"failed": 0,
"duration": 123,
"failedTests": []
}
]
```
Expand Down

0 comments on commit 73fb045

Please sign in to comment.