Skip to content

Commit

Permalink
Fixed typo in rootDir section (#2696)
Browse files Browse the repository at this point in the history
```
[...] using `'<rootDir>'` as a string token in any other path-based config settings to refer back to this value.
```

Changed to:

```
[...] using `'<rootDir>'` as a string token in any other path-based config settings will refer back to this value.
```
  • Loading branch information
pvienneau authored and cpojer committed Jan 25, 2017

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent 16f8e1d commit 88d0503
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/Configuration.md
Original file line number Diff line number Diff line change
@@ -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 `'<rootDir>'` 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 `["<rootDir>/env-setup.js"]`.*
*Note that using `'<rootDir>'` 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 `["<rootDir>/env-setup.js"]`.*

### `setupFiles` [array]
(default: `[]`)

0 comments on commit 88d0503

Please sign in to comment.