bigbuffet-rw/app/soapbox/reducers/__tests__/custom-emojis.test.ts
2022-11-16 08:34:50 -05:00

9 lines
261 B
TypeScript

import { List as ImmutableList } from 'immutable';
import reducer from '../custom-emojis';
describe('custom_emojis reducer', () => {
it('should return the initial state', () => {
expect(reducer(undefined, {} as any)).toEqual(ImmutableList());
});
});