React has a built in library of test methods that you can plug in to your Jasmine style describe/it statemnts. Have a look at the methods here.
The key method is 'render into document', which will create a component instance in the virtual DOM of your component class, and allow you to run tests on it in it's instantiated state
ReactComponent renderIntoDocument(ReactComponent instance)