bigbuffet-rw/app/soapbox/reducers/__tests__/admin-test.js
2020-08-24 18:00:09 -05:00

11 lines
269 B
JavaScript

import reducer from '../admin';
import { fromJS } from 'immutable';
describe('admin reducer', () => {
it('should return the initial state', () => {
expect(reducer(undefined, {})).toEqual(fromJS({
reports: [],
open_report_count: 0,
}));
});
});