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

10 lines
297 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 items, { defaultState } from './items';
describe('items reducer', () => {
it('should return same state when no action matches', () => {
expect(items(defaultState, {})).to.equal(defaultState);
});
});