From bbf53719be48249632b90a6ae76fbdf27d7f45a1 Mon Sep 17 00:00:00 2001 From: David Gilbertson Date: Wed, 10 Jan 2018 02:17:19 +1100 Subject: [PATCH] Fix typo (#3478) 'more' and 'simpler' together is incorrect. --- template/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/template/README.md b/template/README.md index 6b8aa21366b..377b2fbe099 100644 --- a/template/README.md +++ b/template/README.md @@ -1370,7 +1370,7 @@ it('renders welcome message', () => { All Jest matchers are [extensively documented here](http://facebook.github.io/jest/docs/en/expect.html).
Nevertheless you can use a third-party assertion library like [Chai](http://chaijs.com/) if you want to, as described below. -Additionally, you might find [jest-enzyme](https://github.com/blainekasten/enzyme-matchers) helpful to simplify your tests with readable matchers. The above `contains` code can be written simpler with jest-enzyme. +Additionally, you might find [jest-enzyme](https://github.com/blainekasten/enzyme-matchers) helpful to simplify your tests with readable matchers. The above `contains` code can be written more simply with jest-enzyme. ```js expect(wrapper).toContainReact(welcome)