From 9cbde86534741daf6765f25b884077eafe738e8f Mon Sep 17 00:00:00 2001 From: Aristeidis Bampakos Date: Tue, 25 Aug 2020 14:02:42 +0300 Subject: [PATCH] docs: fix typo in the testing component basics guide (#38573) The guide ends with a sentence that implies there are more tests following the end of the guide. PR Close #38573 --- aio/content/guide/testing-components-basics.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/aio/content/guide/testing-components-basics.md b/aio/content/guide/testing-components-basics.md index ca70d13559..316aba4f6d 100644 --- a/aio/content/guide/testing-components-basics.md +++ b/aio/content/guide/testing-components-basics.md @@ -375,6 +375,5 @@ Some noteworthy observations: When you're filtering by CSS selector and only testing properties of a browser's _native element_, the `By.css` approach may be overkill. It's often easier and more clear to filter with a standard `HTMLElement` method -such as `querySelector()` or `querySelectorAll()`, -as you'll see in the next set of tests. +such as `querySelector()` or `querySelectorAll()`.