Skip to content

Instantly share code, notes, and snippets.

@chnbohwr
Created December 17, 2015 02:37
Show Gist options
  • Save chnbohwr/e7c1ebd7cabe12afbdd9 to your computer and use it in GitHub Desktop.
Save chnbohwr/e7c1ebd7cabe12afbdd9 to your computer and use it in GitHub Desktop.
react unit test component rerender
var output = TestUtils.renderIntoDocument(<Test value="123" />);
// rerender by React.render
React.render(<Test value="456" />, React.findDOMNode(output).parentNode);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment