From cee7e3761fa3b2191338033135ec1af466f01056 Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Thu, 19 May 2022 12:31:16 -0500 Subject: [PATCH] Fix suggestions test --- app/soapbox/reducers/__tests__/suggestions-test.js | 1 + 1 file changed, 1 insertion(+) diff --git a/app/soapbox/reducers/__tests__/suggestions-test.js b/app/soapbox/reducers/__tests__/suggestions-test.js index 7da0b7f75..01c1f1aff 100644 --- a/app/soapbox/reducers/__tests__/suggestions-test.js +++ b/app/soapbox/reducers/__tests__/suggestions-test.js @@ -8,6 +8,7 @@ describe('suggestions reducer', () => { it('should return the initial state', () => { expect(reducer(undefined, {})).toEqual(ImmutableMap({ items: ImmutableList(), + next: null, isLoading: false, })); });