Skip to content

Latest commit

 

History

History
40 lines (32 loc) · 1.65 KB

README.md

File metadata and controls

40 lines (32 loc) · 1.65 KB

k-redux-saga-tester

CircleCI Coverage Status NPM Version

Test your sagas (redux-saga) with ease, compatible with Jest snapshots!

Examples

import tester from 'k-redux-saga-tester'
import { search } from './mySaga'

describe('mySaga', () => {
  describe('search', () => {
    const test = tester(search)(/* saga params */)

    it('should search and set something', () => {
      const mocks = {
        call: [() => [{ id: 1, name: 'name 1' }, { id: 2, name: 'name 2' }]],
        select: [() => ({ some: 'form', value: true })],
      }

      expect(test(mocks)).toMatchSnapshot()
    })
  })
})

About uni rakun unirakun

uni rakun is created by two passionate french developers.

Do you want to contact them ? Go to their website

Guillaume CRESPEL Fabien JUIF