UNPKG

hp-redux

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