bigbuffet-rw/app/soapbox/reducers/__tests__/polls-test.js

9 lines
235 B
JavaScript

import { Map as ImmutableMap } from 'immutable';
import reducer from '../polls';
describe('polls reducer', () => {
it('should return the initial state', () => {
expect(reducer(undefined, {})).toEqual(ImmutableMap());
});
});