bigbuffet-rw/app/soapbox/reducers/__tests__/domain-lists.test.ts

13 lines
270 B
TypeScript
Raw Normal View History

2022-11-15 12:39:43 -08:00
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,
},
});
});
});