bigbuffet-rw/app/soapbox/reducers/__tests__/domain-lists.test.ts
2022-11-16 08:34:50 -05:00

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,
},
});
});
});