Integration Tests

In this lesson, we'll learn what integration tests are and see one in practice.

We'll cover the following...

What are integration tests?

Integration tests are extremely similar to unit tests. You write integration tests to test that functions work well together. It’s possible to have functions that pass comprehensive sets of unit tests but be part of failing integration tests. They usually ...