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