12 lines
291 B
JavaScript
12 lines
291 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');
|
|
});
|
|
|
|
}); */
|