Skip to content

Commit

Permalink
chore: add skipped, failed
Browse files Browse the repository at this point in the history
  • Loading branch information
Ma11hewThomas committed May 29, 2024
1 parent 9cd0bc0 commit 1df4784
Showing 1 changed file with 75 additions and 76 deletions.
151 changes: 75 additions & 76 deletions ctrf-report.json
Original file line number Diff line number Diff line change
@@ -1,80 +1,79 @@
{
"results": {
"tool": {
"name": "jest"
"results": {
"tool": {
"name": "jest"
},
"summary": {
"tests": 10,
"passed": 5,
"failed": 2,
"pending": 1,
"skipped": 1,
"other": 1,
"start": 1706644023,
"stop": 1706644048
},
"tests": [
{
"name": "should be able to login",
"status": "passed",
"duration": 1200
},
"summary": {
"tests": 10,
"passed": 5,
"failed": 2,
"pending": 1,
"skipped": 1,
"other": 1,
"start": 1706644023,
"stop": 1706644048
{
"name": "should display profile information",
"status": "failed",
"duration": 800,
"message": "Assertion Failure: profile mismatch",
"trace": "ProfileTest.js:45"
},
"tests": [
{
"name": "should be able to login",
"status": "passed",
"duration": 1200
},
{
"name": "should display profile information",
"status": "passed",
"duration": 800,
"message": "Assertion Failure: profile mismatch",
"trace": "ProfileTest.js:45"
},
{
"name": "should be able to update profile",
"status": "passed",
"duration": 1200,
"flaky": true,
"retries": 2
},
{
"name": "should be able to logout",
"status": "passed",
"duration": 0
},
{
"name": "should validate user settings",
"status": "passed",
"duration": 1100
},
{
"name": "should fail to update profile on network failure",
"status": "passed",
"duration": 900,
"message": "Network Timeout",
"trace": "ProfileUpdateTest.js:60"
},
{
"name": "should load user data",
"status": "passed",
"duration": 0
},
{
"name": "should handle session timeouts",
"status": "passed",
"duration": 950,
"flaky": true,
"retries": 1
},
{
"name": "should clean up user session on logout",
"status": "passed",
"duration": 1050
},
{
"name": "should allow user to change password",
"status": "passed",
"duration": 1300,
"flaky": true,
"retries": 3
}
]
}
{
"name": "should be able to update profile",
"status": "passed",
"duration": 1200,
"flaky": true,
"retries": 2
},
{
"name": "should be able to logout",
"status": "skipped",
"duration": 0
},
{
"name": "should validate user settings",
"status": "passed",
"duration": 1100
},
{
"name": "should fail to update profile on network failure",
"status": "failed",
"duration": 900,
"message": "Network Timeout",
"trace": "ProfileUpdateTest.js:60"
},
{
"name": "should load user data",
"status": "pending",
"duration": 0
},
{
"name": "should handle session timeouts",
"status": "passed",
"duration": 950,
"flaky": true,
"retries": 1
},
{
"name": "should clean up user session on logout",
"status": "other",
"duration": 1050
},
{
"name": "should allow user to change password",
"status": "passed",
"duration": 1300,
"flaky": true,
"retries": 3
}
]
}
}

0 comments on commit 1df4784

Please sign in to comment.