bigbuffet-rw/app/soapbox/reducers/__tests__/reports-test.js
marcin mikołajczak 6c45dcb109 TypeScript, FC (reducers, search)
Signed-off-by: marcin mikołajczak <git@mkljczk.pl>
2022-06-07 18:25:53 +02:00

17 lines
379 B
JavaScript

import reducer from '../reports';
describe('reports reducer', () => {
it('should return the initial state', () => {
expect(reducer(undefined, {}).toJS()).toEqual({
new: {
isSubmitting: false,
account_id: null,
status_ids: [],
comment: '',
forward: false,
block: false,
rule_ids: [],
},
});
});
});