Choices/src/scripts/src/reducers/groups.test.js

10 lines
301 B
JavaScript
Raw Normal View History

2017-10-09 18:46:47 +02:00
import { expect } from 'chai';
// import * as actions from '../actions/actions';
import groups, { defaultState } from './groups';
describe('groups reducer', () => {
it('should return same state when no action matches', () => {
expect(groups(defaultState, {})).to.equal(defaultState);
});
});