12 lines
264 B
JavaScript
12 lines
264 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: [],
|
||
|
report_count: 0,
|
||
|
}));
|
||
|
});
|
||
|
});
|