12 lines
326 B
JavaScript
Raw Normal View History

2016-09-30 18:25:04 +02:00
import expect from 'expect';
import notificationProviderReducer from '../reducer';
import { fromJS } from 'immutable';
describe('notificationProviderReducer', () => {
it('returns the initial state', () => {
2016-10-05 11:32:31 +02:00
expect(notificationProviderReducer(undefined, {})).toEqual(fromJS({
notifications: [],
}));
2016-09-30 18:25:04 +02:00
});
});