bigbuffet-rw/app/soapbox/reducers/__tests__/trends.test.ts
2022-07-06 11:53:55 -05:00

10 lines
235 B
TypeScript

import reducer from '../trends';
describe('trends reducer', () => {
it('should return the initial state', () => {
expect(reducer(undefined, {} as any).toJS()).toEqual({
items: [],
isLoading: false,
});
});
});