modules-pack
Version:
JavaScript Modules for Modern Frontend & Backend Projects
10 lines (7 loc) • 335 B
JavaScript
import initState from '../data'
import reducer from '../reducers'
/**
* ACTION HANDLERS TESTS =======================================================
* =============================================================================
*/
test('returns initial state', () => expect(reducer(initState, { type: '' })).toEqual(initState))