UNPKG

hp-redux

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