it("should be wrapped with a div", function() {
   var app = TestUtils.renderIntoDocument(App());
   expect(app.getDOMNode().tagName).toEqual('DIV');
 });
 it("should render text: Hello world!", function() {
   var app = TestUtils.renderIntoDocument(App());
   expect(app.getDOMNode().textContent).toEqual('Hello world!');
 });