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

35 lines
778 B
JavaScript
Raw Normal View History

2020-06-09 18:08:07 -07:00
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',
'.mp3',
'.ogg',
2020-08-27 19:31:07 -07:00
'.wav',
2020-06-09 18:08:07 -07:00
'image/jpeg',
'image/png',
'image/gif',
'image/webp',
'video/webm',
'video/mp4',
'video/quicktime',
'audio/mp3',
'audio/mpeg',
'audio/ogg',
2020-08-27 19:31:07 -07:00
'audio/wav',
2020-06-09 18:08:07 -07:00
]),
}));
});
});