11 lines
284 B
JavaScript
11 lines
284 B
JavaScript
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');
|
|
});
|
|
|
|
}); |