UNPKG

hp-redux

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