insomnia/app/actions/__tests__/requestgroups.test.js
Gregory Schier 72f2ef1964 fix
2016-04-03 15:58:35 -07:00

15 lines
422 B
JavaScript

jest.unmock('../requestgroups');
jest.unmock('../global');
jest.unmock('../../constants/global');
jest.unmock('../../constants/actionTypes');
jest.unmock('../../validators/requestGroup');
jest.unmock('jsonschema');
jest.unmock('redux-thunk');
jest.unmock('redux-mock-store');
describe('RequestGroup Actions', () => {
it('should add valid group', () => {
spyOn(Date, 'now').and.returnValue(1000000000000);
});
});