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