10 lines
235 B
TypeScript
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,
|
|
});
|
|
});
|
|
});
|