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

9 lines
235 B
JavaScript

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