bigbuffet-rw/app/soapbox/reducers/__tests__/height_cache-test.js
2020-07-07 22:27:41 -05:00

13 lines
444 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', () => {
expect(reducer(undefined, { type: HEIGHT_CACHE_CLEAR })).toEqual(ImmutableMap());
});
});