pleroma/app/soapbox/reducers/__tests__/polls-test.js
2022-01-10 16:01:24 -06:00

8 lines
234 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());
});
});