From 7ea96f842747445d7968fa747cd598d9646991ef Mon Sep 17 00:00:00 2001 From: Karthik Bagavathy <112591951+kb42@users.noreply.github.com> Date: Tue, 12 Aug 2025 07:41:31 -0500 Subject: [PATCH] fix(curriculum): modify unit testing definition wording (#61777) Co-authored-by: Huyen Nguyen <25715018+huyenltnguyen@users.noreply.github.com> --- .../67db3180830cf02eb662ecaf.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.