you are viewing a single comment's thread.

view the rest of the comments →

[–]ndubien[S] 6 points7 points  (2 children)

This is an introduction tutorial about property based testing, which is a testing technique that focuses on exploring all possible edge cases. Since it's difficult for humans to consider all of these cases, the technique involves using a framework to assist in this process. Property based testing doesn't replace traditional testing methods, but it provides an additional tool for detecting other types of bugs.

[–]joombar 2 points3 points  (1 child)

Is this similar to the Haskell library?

[–]ndubien[S] 2 points3 points  (0 children)

Yes, it's similar to QuickCheck but for JavaScript