Skip to content

Commit

Permalink
Merge pull request #1731 from spmiller/patch-1
Browse files Browse the repository at this point in the history
Add extra required babel configuration step
  • Loading branch information
timdorr committed May 17, 2016
2 parents 9911840 + 62fc713 commit eeaa4cf
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions docs/recipes/WritingTests.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,14 @@ To use it together with [Babel](http://babeljs.io), you will need to install `ba
npm install --save-dev babel-register
```

and configure it to use ES2015 features in `.babelrc`:

```js
{
"presets": ["es2015"]
}
```

Then, add this to `scripts` in your `package.json`:

```js
Expand Down

0 comments on commit eeaa4cf

Please sign in to comment.