fix linter errors

This commit is contained in:
Curtis ROck 2020-07-07 21:52:56 -05:00
parent 3481b4c728
commit e01b7d8d70
2 changed files with 2 additions and 6 deletions

View file

@ -8,10 +8,6 @@ describe('height_cache reducer', () => {
});
it('should handle HEIGHT_CACHE_CLEAR', () => {
const state = ImmutableMap({ is_uploading: true });
const action = {
type: HEIGHT_CACHE_CLEAR,
};
expect(reducer(undefined, {})).toEqual(ImmutableMap());
})
});
});

View file

@ -1,6 +1,6 @@
import reducer from '../identity_proofs';
import { Map as ImmutableMap } from 'immutable';
import * as actions from '../identity_proofs';
//import * as actions from '../identity_proofs';
describe('identity_proofs reducer', () => {
it('should return the initial state', () => {