fix linter errors
This commit is contained in:
parent
3481b4c728
commit
e01b7d8d70
2 changed files with 2 additions and 6 deletions
|
@ -8,10 +8,6 @@ describe('height_cache reducer', () => {
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should handle HEIGHT_CACHE_CLEAR', () => {
|
it('should handle HEIGHT_CACHE_CLEAR', () => {
|
||||||
const state = ImmutableMap({ is_uploading: true });
|
|
||||||
const action = {
|
|
||||||
type: HEIGHT_CACHE_CLEAR,
|
|
||||||
};
|
|
||||||
expect(reducer(undefined, {})).toEqual(ImmutableMap());
|
expect(reducer(undefined, {})).toEqual(ImmutableMap());
|
||||||
})
|
});
|
||||||
});
|
});
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import reducer from '../identity_proofs';
|
import reducer from '../identity_proofs';
|
||||||
import { Map as ImmutableMap } from 'immutable';
|
import { Map as ImmutableMap } from 'immutable';
|
||||||
import * as actions from '../identity_proofs';
|
//import * as actions from '../identity_proofs';
|
||||||
|
|
||||||
describe('identity_proofs reducer', () => {
|
describe('identity_proofs reducer', () => {
|
||||||
it('should return the initial state', () => {
|
it('should return the initial state', () => {
|
||||||
|
|
Loading…
Reference in a new issue