10 lines
266 B
JavaScript
10 lines
266 B
JavaScript
import reducer from '../settings';
|
|
import { Map as ImmutableMap } from 'immutable';
|
|
|
|
describe('settings reducer', () => {
|
|
it('should return the initial state', () => {
|
|
expect(reducer(undefined, {})).toEqual(ImmutableMap({
|
|
saved: true,
|
|
}));
|
|
});
|
|
});
|