DEV Community

Discussion on: What are the alternatives to unit tests?

Collapse
 
atomdrug profile image
AtomDrug

Alternative: Scenario testing

For API testing I preffer scenario tests.
Good way is docs.cucumber.io/ which is really strong.

  • test definition written as text
  • easy to understand even for "non-tech" people
  • test whole requests/functions end2end
  • customizable
  • scriptable/easily automated for CI/CD