Code Monkey home page Code Monkey logo

Comments (5)

mjrussell avatar mjrussell commented on May 18, 2024

@aft-luke I just created a PR (more like a discussion) about possibly similar issues with testing #45

from redux-saga.

yelouafi avatar yelouafi commented on May 18, 2024

How do I use a yielded value inside a generator to continue on with tests?

by calling next(mockResult).

 it('should wait for the next DO_SOMETHING', function() {
   sut.next().value.should.eql(io.take(actions.DO_SOMETHING))
 })

it('should dispatch a fetch request', function() {
  // inject mock result into next
  const mockThing = { thing: { id: 1 } }
  sut.next(mockThing).value.should.eql(io.fork(creators.fetchSomething)) 
  ....
}

If you want to simulate an error, call throw(mockResult) instead

Although you don't use it in the above example. We should provide a way to mock the result of forked tasks (e.g. fetch = in your example )

from redux-saga.

josebalius avatar josebalius commented on May 18, 2024

@yelouafi I was going to open another issue for a question very similar to this one, so I hope this is okay. Here is another case for testing

function* watchDoSomething() {
        while (true) {
            const response = yield io.take(actions.DO_SOMETHING)
            if(response.success) {
                 yield io.fork(fetchSomething())
            } else {
                // do something else
            }
        }
    }

How can I test that flow?

from redux-saga.

yelouafi avatar yelouafi commented on May 18, 2024

@josebalius This is related to #47. We need to provide an utility function to mock fork results

from redux-saga.

yelouafi avatar yelouafi commented on May 18, 2024

v0.6.0 includes a createMockTask function, see releases notes for usage example.

from redux-saga.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.