Redux Preboiled
  • Redux Preboiled
  • Guides
    • Getting Started
    • Actions
    • Reducers
    • Testing
  • API
    • API Overview
    • chainReducers
    • createAction
    • getInitialState
    • onAction
    • reduceActions
    • withInitialState
  • Misc
    • Changelog
    • License
Powered by GitBook
On this page
  • Details
  • Examples
  • See Also
  1. API

getInitialState

Returns the initial state of a reducer.

// JavaScript

function getInitialState(reducer)
// TypeScript

function getInitialState<S>(reducer: Reducer<S>): S

Details

getInitialState asks the passed reducer for its initial state by calling it with an undefined state and a dummy action, just as a Redux store would.

This helper is mainly intended for tests, where it can help improve readabilty. For example, when making assertions about a reducer's initial state, getInitialState(reducer) is more expressive than something like reducer(undefined, { type: '' }).

Examples

Basic usage:

import { getInitialState } from 'redux-preboiled'

const reducer = (state = 0, action) =>
  action.type === 'increment' ? state + 1 : state


getInitialState(reducer)
// => 0
import { getInitialState } from 'redux-preboiled'

const reducer = (state = 0, action) =>
  action.type === 'increment' ? state + 1 : state

test('initial state is 0', () => {
  expect(getInitialState(reducer)).toBe(0);
})

See Also

PreviouscreateActionNextonAction

Last updated 3 years ago

Usage in :

guide

Jest
Testing