Skip to content

Instantly share code, notes, and snippets.

@icirellik
Last active August 25, 2015 20:20
Show Gist options
  • Save icirellik/091ca3dafaab1aa209a6 to your computer and use it in GitHub Desktop.
Save icirellik/091ca3dafaab1aa209a6 to your computer and use it in GitHub Desktop.
React Test with Context
var TestUtils = React.addons.TestUtils;
var context = {};
var elementWithContenxt = React.withContext(context, function () {
return new Element({
prop1: 'property'
});
});
var renderedElement = TestUtils.renderIntoDocument(elementWithContenxt);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment