2014-12-22 09:03:57 +01:00
|
|
|
/* var App = require('./../app/App.js');
|
2014-11-10 21:15:14 +01:00
|
|
|
var TestUtils = require('react-addons').TestUtils;
|
|
|
|
|
|
|
|
|
|
describe("App", function() {
|
|
|
|
|
|
|
|
|
|
it("should be wrapped with a div", function() {
|
|
|
|
|
var app = TestUtils.renderIntoDocument(App());
|
|
|
|
|
expect(app.getDOMNode().tagName).toEqual('DIV');
|
|
|
|
|
});
|
|
|
|
|
|
2014-12-22 09:03:57 +01:00
|
|
|
}); */
|