18 lines
489 B
JavaScript
18 lines
489 B
JavaScript
import { Map as ImmutableMap } from 'immutable';
|
|
import reducer from '../instance';
|
|
|
|
describe('instance reducer', () => {
|
|
it('should return the initial state', () => {
|
|
expect(reducer(undefined, {})).toEqual(ImmutableMap({
|
|
max_toot_chars: 500,
|
|
description_limit: 1500,
|
|
poll_limits: ImmutableMap({
|
|
max_expiration: 2629746,
|
|
max_option_chars: 25,
|
|
max_options: 4,
|
|
min_expiration: 300,
|
|
}),
|
|
version: '0.0.0',
|
|
}));
|
|
});
|
|
});
|