Improve your Javascript unit testing with Parameterized tests.md 599 B


Title: "Improve your Javascript unit testing with Parameterized tests" Date: 2017-03-24 19:14:14 Categories: [programming] tags: [nodejs, javascript, se]

Authors: sedlav

Parameterized tests allow a developer to run the same test over and over again using different values. This can be useful if you need to test that your function can handle a range of different inputs, including edge cases. It can be impractical to write an individual test for each input.

Link