Fix suggestions test

This commit is contained in:
Alex Gleason
2022-05-19 12:31:16 -05:00
parent 3fbe810406
commit cee7e3761f

View File

@ -8,6 +8,7 @@ describe('suggestions reducer', () => {
it('should return the initial state', () => {
expect(reducer(undefined, {})).toEqual(ImmutableMap({
items: ImmutableList(),
next: null,
isLoading: false,
}));
});