Browse Source

redux unit test

pull/1/head
Tim Glasgow 3 years ago
parent
commit
c29e083479
  1. 6
      squarenotsquare/__tests__/Redux-test.js

6
squarenotsquare/__tests__/Redux-test.js

@ -0,0 +1,6 @@
import configStore from '../src/redux/CreateStore';
test('configures redux store', () => {
const configgedStore = configStore;
expect(configgedStore).toEqual(expect.anything());
})
Loading…
Cancel
Save