mirror of
https://github.com/facebook/react.git
synced 2025-11-01 09:12:30 +00:00
Add missing semicolon
This commit is contained in:
@@ -101,7 +101,7 @@ describe('ReactUpdates', function() {
|
||||
expect(instance.state.y).toBe(0);
|
||||
|
||||
ReactUpdates.batchedUpdates(function() {
|
||||
React.render(<Component x={1} />, container)
|
||||
React.render(<Component x={1} />, container);
|
||||
instance.setState({y: 2});
|
||||
expect(instance.props.x).toBe(0);
|
||||
expect(instance.state.y).toBe(0);
|
||||
|
||||
Reference in New Issue
Block a user