mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 06:39:48 +00:00
15 lines
422 B
JavaScript
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);
|
|
});
|
|
});
|