Simon Bailey 967706e942 feat: added react-router
Signed-off-by: Simon Bailey <simon@newtriks.com>
2014-09-26 14:23:08 +01:00

15 lines
298 B
JavaScript

'use strict';
describe('main', function () {
var main, component;
beforeEach(function () {
main = require('../../../src/scripts/components/main.jsx');
component = main();
});
it('should create a new instance of main', function () {
expect(component).toBeDefined();
});
});