Skip to content

v3.0.0

Choose a tag to compare

@github-actions github-actions released this 25 Jan 02:35
· 46 commits to main since this release
8d052af

3.0.0 (2023-01-25)

Features

  • expect-exactly should specify spec structure (#54) (8d052af)

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"
        }
      }
    }
  }
}