10 lines
296 B
Handlebars
Raw Normal View History

2016-08-18 11:41:13 +02: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({}));
});
});