From 20b75a275a381f5f1816b21773bdbbbaaaa8a674 Mon Sep 17 00:00:00 2001 From: Matthew Chan Date: Sat, 26 Oct 2019 08:39:30 -0700 Subject: [PATCH] Update Our to Your (#19037) * Update Our to Your * Add suggestion changes Co-Authored-By: Sidhartha Chatterjee --- docs/docs/unit-testing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/unit-testing.md b/docs/docs/unit-testing.md index e204b9ba61006..3269fd0d25ef5 100644 --- a/docs/docs/unit-testing.md +++ b/docs/docs/unit-testing.md @@ -165,7 +165,7 @@ start with a simple snapshot test to check that everything is working. First, create the test file. You can either put these in a `__tests__` directory, or put them elsewhere (usually next to the component itself), with the extension `.spec.js` or `.test.js`. The decision comes down to your own -preference. In this guide, you will use the `__tests__` folder convention. Create a test for our header component, so create a `header.js` file in `src/components/__tests__/`: +preference. In this guide, you will use the `__tests__` folder convention. To test the header component, create a `header.js` file in `src/components/__tests__/`: ```js:title=src/components/__tests__/header.js import React from "react"