Status: Tags: Links: Behavior Driven Development - JavaScript Debugging
JS Mocha and Chai
Principles
JS libs used for BDD
Practices
- User-friendly testing of functions
describe(name, function() )
sets a header for the debugging uiit(name, function() )
writes the description of the test made and the actual test being madeassert.equal( function() , expected)
runs the tested function and compares it to the expected result- Also other versions of assert
-
before( function() )
andafter( function() )
run before and after describe content
beforeEach( function() )
andafterEach( function() )
run before and after tests
References: https://javascript.info/testing-mocha
Created:: 2021-05-28 18:56 PM