#jest
Read more stories on Hashnode
Articles with this tag
In this article, I'll show how to test Angular directive. To test it I'll create appCloneElement directive. Its purpose is to duplicate HTML elements...
In this article, I'll show how to test Angular pipes. It can be done in two different ways: directly create pipe and test output use the pipe in the...
In this article, I'll show how to set up a basic Angular app with Jest. In case of any problems please refer to the official documentation: Jest -...
Code coverage is a metric that measures what part of the tested code was executed. It's relevant because it helps to find edge cases, untested or dead...
The methodology This series will be based on the black box testing methodology. What does that even mean? It means that there is input data provided,...