17 lines
533 B
JavaScript
17 lines
533 B
JavaScript
import reducer from '../height_cache';
|
|
import { Map as ImmutableMap } from 'immutable';
|
|
import { HEIGHT_CACHE_CLEAR } from '../height_cache';
|
|
|
|
describe('height_cache reducer', () => {
|
|
it('should return the initial state', () => {
|
|
expect(reducer(undefined, {})).toEqual(ImmutableMap());
|
|
});
|
|
|
|
it('should handle HEIGHT_CACHE_CLEAR', () => {
|
|
const state = ImmutableMap({ is_uploading: true });
|
|
const action = {
|
|
type: HEIGHT_CACHE_CLEAR,
|
|
};
|
|
expect(reducer(undefined, {})).toEqual(ImmutableMap());
|
|
})
|
|
});
|