Files
ncd-fe/app/soapbox/reducers/__tests__/groups-test.js
2022-01-10 16:25:06 -06:00

10 lines
237 B
JavaScript

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