initial commit

This commit is contained in:
Colin Megill
2017-08-23 16:28:01 -07:00
commit f6d7cc3e23
40 changed files with 1661 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
import React from 'react';
import { shallow } from 'enzyme';
import { BrowserRouter as Router } from 'react-router-dom';
import Routes from '../../src/routes';
describe('Routes', () => {
it('contains spec with an expectation', () => {
expect(shallow(<Routes />).find(Router)).to.have.length(1);
});
});