pleroma/packages/pl-fe/src/reducers/trends.test.ts

11 lines
234 B
TypeScript
Raw Normal View History

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