bigbuffet-rw/app/soapbox/reducers/__tests__/media_attachments-test.js
2020-07-09 19:37:04 -05:00

27 lines
645 B
JavaScript

import reducer from '../media_attachments';
import { Map as ImmutableMap, List as ImmutableList } from 'immutable';
describe('media_attachments reducer', () => {
it('should return the initial state', () => {
expect(reducer(undefined, {})).toEqual(ImmutableMap({
accept_content_types: ImmutableList([
'.jpg',
'.jpeg',
'.png',
'.gif',
'.webp',
'.webm',
'.mp4',
'.m4v',
'.mov',
'image/jpeg',
'image/png',
'image/gif',
'image/webp',
'video/webm',
'video/mp4',
'video/quicktime',
]),
}));
});
});