bigbuffet-rw/app/soapbox/reducers/__tests__/trends.test.ts

11 lines
235 B
TypeScript
Raw Normal View History

2022-01-10 14:01:24 -08:00
import reducer from '../trends';
2020-06-09 18:08:07 -07:00
describe('trends reducer', () => {
it('should return the initial state', () => {
2022-07-06 09:53:55 -07:00
expect(reducer(undefined, {} as any).toJS()).toEqual({
items: [],
isLoading: false,
});
2020-06-09 18:08:07 -07:00
});
});