From 99845d7f4530f374390634bbc649215a228b3961 Mon Sep 17 00:00:00 2001 From: Fisher Sun Date: Mon, 29 Jul 2024 15:51:24 -0400 Subject: [PATCH] Fix typo --- testing-components.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing-components.md b/testing-components.md index 01c5d17..97da2a8 100644 --- a/testing-components.md +++ b/testing-components.md @@ -178,7 +178,7 @@ describe('CounterComponent', () => { }); ``` -Using `describe`, we define a test suite for the `CounterComponent`. In contains a `beforeEach` block that configures the `TestBed` and renders the Component. +Using `describe`, we define a test suite for the `CounterComponent`. It contains a `beforeEach` block that configures the `TestBed` and renders the Component.