What is a Test?
Learn what a test is and how it works in jest.
We'll cover the following...
We'll cover the following...
Test
A test is a code that throws an error when the actual result of something does not match the expected output.
Example
The result !== expected part is called an assertion. You can change the variable expected to see how the assertion fails.
Jest
Jest ...