mirror of
https://github.com/strapi/strapi.git
synced 2025-08-13 03:07:32 +00:00
10 lines
296 B
JavaScript
10 lines
296 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({}));
|
||
|
});
|
||
|
});
|