From 6aead7ef8fd61055e5399b29c478bc5644e5eca9 Mon Sep 17 00:00:00 2001 From: Adam Date: Wed, 15 Aug 2018 22:17:00 -0700 Subject: [PATCH] Fix typo in README MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit "this add custom jest matchers" → "this adds custom jest matchers" --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6db51eb2..667ce43f 100644 --- a/README.md +++ b/README.md @@ -124,7 +124,7 @@ You may also be interested in installing `jest-dom` so you can use // __tests__/fetch.js import React from 'react' import {render, fireEvent, cleanup, waitForElement} from 'react-testing-library' -// this add custom jest matchers from jest-dom +// this adds custom jest matchers from jest-dom import 'jest-dom/extend-expect' import axiosMock from 'axios' // the mock lives in a __mocks__ directory import Fetch from '../fetch' // see the tests for a full implementation