12 lines
270 B
TypeScript
12 lines
270 B
TypeScript
import reducer from '../domain-lists';
|
|
|
|
describe('domain_lists reducer', () => {
|
|
it('should return the initial state', () => {
|
|
expect(reducer(undefined, {} as any).toJS()).toEqual({
|
|
blocks: {
|
|
items: [],
|
|
next: null,
|
|
},
|
|
});
|
|
});
|
|
});
|