From 88d0503fdc1839fb1b69afd00634236828b1e090 Mon Sep 17 00:00:00 2001 From: pvienneau Date: Wed, 25 Jan 2017 12:00:10 -0500 Subject: [PATCH] Fixed typo in rootDir section (#2696) ``` [...] using `''` as a string token in any other path-based config settings to refer back to this value. ``` Changed to: ``` [...] using `''` as a string token in any other path-based config settings will refer back to this value. ``` --- docs/Configuration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Configuration.md b/docs/Configuration.md index 4f154c106d19..13668971a774 100644 --- a/docs/Configuration.md +++ b/docs/Configuration.md @@ -268,7 +268,7 @@ The root directory that Jest should scan for tests and modules within. If you pu Oftentimes, you'll want to set this to `'src'` or `'lib'`, corresponding to where in your repository the code is stored. -*Note that using `''` as a string token in any other path-based config settings to refer back to this value. So, for example, if you want your [`setupFiles`](#setupfiles-array) config entry to point at the `env-setup.js` file at the root of your project, you could set its value to `["/env-setup.js"]`.* +*Note that using `''` as a string token in any other path-based config settings will refer back to this value. So, for example, if you want your [`setupFiles`](#setupfiles-array) config entry to point at the `env-setup.js` file at the root of your project, you could set its value to `["/env-setup.js"]`.* ### `setupFiles` [array] (default: `[]`)