|
var App = require('./../app/App.js');
|
|
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');
|
|
});
|
|
|
|
});
|