fix linter errors

tl-language-filters
Curtis ROck 2020-07-07 21:52:56 -05:00
rodzic 3481b4c728
commit e01b7d8d70
2 zmienionych plików z 2 dodań i 6 usunięć

Wyświetl plik

@ -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());
})
});
});

Wyświetl plik

@ -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', () => {