Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/guides/testing.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@ In prior setups, react-tools was needed. This is not longer the case. You will n
"react-tools": "~0.13.3",
```

Lastly, anywhere you have the following, needs to be replaced with this:
Lastly, anywhere you have the following:

```js
var React = require('react/addons')
var TestUtils = React.addons.TestUtils
```

with this:
needs to be replaced with this:

```js
import React from 'react'
Expand Down