10 lines
296 B
Handlebars
Raw Normal View History

2017-01-17 13:40:59 +01:00
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({}));
});
});