import { expect } from 'chai';
import { createStore } from 'redux';
describe('redux store test demonstration', () => {
describe('testReducer', () => {
it('should increment value on TEST_ACTION', () => {
// define a test reducer with initial state: test: 0
const te...