feature-change-applier/src/reducers/stateReducer.results.test.js

18 lines
351 B
JavaScript
Raw Normal View History

import {stateReducer, initState} from './stateReducer';
describe('Results', () => {
let state = {};
beforeEach(()=> {
state = initState();
})
it('results returned unaltered', () => {
const action = {type: ''};
expect(stateReducer(state, action)).toBe(state);
});
it('results returned from test cases', () => {
})
});