mirror of
https://github.com/strapi/strapi.git
synced 2025-07-19 07:02:26 +00:00
10 lines
268 B
Handlebars
Executable File
10 lines
268 B
Handlebars
Executable File
|
|
import { fromJS } from 'immutable';
|
|
import {{ camelCase name }}Reducer from '../reducer';
|
|
|
|
describe('{{ camelCase name }}Reducer', () => {
|
|
it('returns the initial state', () => {
|
|
expect({{ camelCase name }}Reducer(undefined, {})).toEqual(fromJS({}));
|
|
});
|
|
});
|