mirror of
https://github.com/strapi/strapi.git
synced 2025-08-12 10:48:12 +00:00
12 lines
326 B
JavaScript
12 lines
326 B
JavaScript
import expect from 'expect';
|
|
import notificationProviderReducer from '../reducer';
|
|
import { fromJS } from 'immutable';
|
|
|
|
describe('notificationProviderReducer', () => {
|
|
it('returns the initial state', () => {
|
|
expect(notificationProviderReducer(undefined, {})).toEqual(fromJS({
|
|
notifications: [],
|
|
}));
|
|
});
|
|
});
|