add jest and enzyme testing dependencies and update infrastructure configuration to make testing work

This commit is contained in:
John Mitchell
2018-10-24 16:50:08 -04:00
parent 311346b77b
commit a76ac805f2
5 changed files with 45 additions and 8 deletions

4
enzyme.config.js Normal file
View File

@@ -0,0 +1,4 @@
const enzyme = require('enzyme');
const Adapter = require('enzyme-adapter-react-16');
enzyme.configure({ adapter: new Adapter() });