Fix formatting in test utils docs

(cherry picked from commit 66881ae083)
This commit is contained in:
Ben Alpert
2015-08-25 09:48:07 -07:00
parent 356b8f3559
commit c20b8fec2f
+2
View File
@@ -17,12 +17,14 @@ Simulate.{eventName}(DOMElement element, object eventData)
Simulate an event dispatch on a DOM node with optional `eventData` event data. **This is possibly the single most useful utility in `ReactTestUtils`.**
**Clicking an element**
```javascript
var node = React.findDOMNode(this.refs.button);
React.addons.TestUtils.Simulate.click(node);
```
**Changing the value of an input field and then pressing ENTER**
```javascript
var node = React.findDOMNode(this.refs.input);
node.value = 'giraffe'