From baa949815675a719359d93dd9636ff9eb9125260 Mon Sep 17 00:00:00 2001 From: Noah Allen Date: Tue, 17 Nov 2020 09:48:10 -0800 Subject: [PATCH] Add nonsense readme change --- apps/editing-toolkit/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/editing-toolkit/README.md b/apps/editing-toolkit/README.md index 85a5e1c6b382c..210f1870ec044 100644 --- a/apps/editing-toolkit/README.md +++ b/apps/editing-toolkit/README.md @@ -155,7 +155,7 @@ yarn test:js:update-snapshots ### Writing Tests -The tests make use of the 3rd party [React Testing Library](https://testing-library.com/docs/react-testing-library/). This library helps to promote healthy testing practices by encouraging testing of the component _interface_ rather than its internal APIs (ie: implementation details). +The tests make use of the 3rd party [React Testing Library](https://testing-library.com/docs/react-testing-library/). This library promotes healthy testing practices by encouraging testing of the component _interface_ rather than its internal APIs (ie: implementation details). When writing tests try to approach them **from the perspective of how a user would interact with your component**. Approaching tests in this fashion provides greater confidence that tests will capture true component behaviors and avoids the need for costly refactoring should the component's implementation need to change.