Updated with latest version of react boilerplate

This commit is contained in:
Christian Alfoni
2014-11-10 21:15:14 +01:00
parent e2c81b975b
commit e160286d01
44 changed files with 32386 additions and 4168 deletions

11
specs/App-spec.js Normal file
View File

@@ -0,0 +1,11 @@
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');
});
});