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

10 lines
254 B
JavaScript

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