From 12a84023f13875aff0105ebe485887431a00d033 Mon Sep 17 00:00:00 2001 From: Todd Chaffee Date: Sat, 10 Aug 2019 13:00:47 -0300 Subject: [PATCH] Update testing-recipes.md with English correct. (#2224) "Get a hold" should be the phrasal verb "get ahold". See https://www.quickanddirtytips.com/education/grammar/a-hold-or-ahold?page=1 --- content/docs/testing-recipes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/docs/testing-recipes.md b/content/docs/testing-recipes.md index 7480add0..609d3d74 100644 --- a/content/docs/testing-recipes.md +++ b/content/docs/testing-recipes.md @@ -393,7 +393,7 @@ it("changes value when clicked", () => { render(, container); }); - // get a hold of the button element, and trigger some clicks on it + // get ahold of the button element, and trigger some clicks on it const button = document.querySelector("[data-testid=toggle]"); expect(button.innerHTML).toBe("Turn off");