pleroma/packages/pl-fe/src/reducers/suggestions.test.ts
2024-09-12 23:03:09 +02:00

11 lines
262 B
TypeScript

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