v3.0.0
3.0.0 (2023-01-25)
Features
BREAKING CHANGES
- the "expected" JSON file now includes the spec file structure
before
{
"1 passing 1 failing": {
"passes": "passed",
"fails": "fail"
}
}after
The file should include the structure matching the specs. For example, if the above test was from cypress/failing/spec.js file:
{
"cypress": {
"failing": {
"spec.js": {
"1 passing 1 failing": {
"passes": "passed",
"fails": "fail"
}
}
}
}
}