diff --git a/curriculum/challenges/english/25-front-end-development/lecture-understanding-the-different-types-of-testing/67db3180830cf02eb662ecaf.md b/curriculum/challenges/english/25-front-end-development/lecture-understanding-the-different-types-of-testing/67db3180830cf02eb662ecaf.md index 1d1778fc213..225f2aca6ba 100644 --- a/curriculum/challenges/english/25-front-end-development/lecture-understanding-the-different-types-of-testing/67db3180830cf02eb662ecaf.md +++ b/curriculum/challenges/english/25-front-end-development/lecture-understanding-the-different-types-of-testing/67db3180830cf02eb662ecaf.md @@ -7,7 +7,7 @@ dashedName: how-do-assertions-work-in-unit-testing # --description-- -You were first introduced to assertions and unit testing in a previous lecture. But as a review, unit testing is what you do when you write tests for units of code. Assertions are used to test that the code is behaving as expected. +You were first introduced to assertions and unit testing in a previous lecture. But as a review, unit testing is when you check the output of individual functions or components independently, in contrast with testing the final output of the entire program. Assertions are used to test that the code is behaving as expected. In this lecture, we are going to take a closer look at assertions in unit tests and explore some best practices.