Admin: fix reducer tests

This commit is contained in:
Alex Gleason 2020-12-29 18:59:31 -06:00
parent 23a4a605a1
commit 19e1e15263
No known key found for this signature in database
GPG key ID: 7211D1F99744FBB7

View file

@ -1,11 +1,13 @@
import reducer from '../admin';
import { fromJS } from 'immutable';
import { Map as ImmutableMap, OrderedSet as ImmutableOrderedSet, fromJS } from 'immutable';
describe('admin reducer', () => {
it('should return the initial state', () => {
expect(reducer(undefined, {})).toEqual(fromJS({
reports: [],
open_report_count: 0,
users: ImmutableMap(),
awaitingApproval: ImmutableOrderedSet(),
}));
});
});