Fix suggestions test

This commit is contained in:
Alex Gleason 2022-05-19 12:31:16 -05:00
parent 3fbe810406
commit cee7e3761f
No known key found for this signature in database
GPG key ID: 7211D1F99744FBB7

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