From 934055557f8d48bf60ff4f125a0920ffa875c3b3 Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Tue, 12 Apr 2022 20:23:45 -0500 Subject: [PATCH] Fix sidebar reducer test --- app/soapbox/reducers/__tests__/sidebar-test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/soapbox/reducers/__tests__/sidebar-test.js b/app/soapbox/reducers/__tests__/sidebar-test.js index 09cbc8d21..511325488 100644 --- a/app/soapbox/reducers/__tests__/sidebar-test.js +++ b/app/soapbox/reducers/__tests__/sidebar-test.js @@ -2,6 +2,6 @@ import reducer from '../sidebar'; describe('sidebar reducer', () => { it('should return the initial state', () => { - expect(reducer(undefined, {})).toEqual({}); + expect(reducer(undefined, {})).toEqual({ sidebarOpen: false }); }); });