UNPKG

hp-redux

Version:
13 lines (10 loc) 280 B
/* eslint-env mocha*/ const { expect } = require('chai'); const heroPowers = require('../../src/reducers/heroPowers'); describe('heroPowers reducer', () => { it('should return the initial state', () => { expect( heroPowers(undefined, {}) ).to.eql({}); }); });