redux-saga-testing icon indicating copy to clipboard operation
redux-saga-testing copied to clipboard

A no-brainer way of testing your Sagas

Results 12 redux-saga-testing issues
Sort by recently updated
recently updated
newest added

Bumps [minimist](https://github.com/substack/minimist) from 1.2.5 to 1.2.6. Commits 7efb22a 1.2.6 ef88b93 security notice for additional prototype pollution issue c2b9819 isConstructorOrProto adapted from PR bc8ecee test from prototype pollution PR See full...

dependencies

Bumps [hosted-git-info](https://github.com/npm/hosted-git-info) from 2.8.8 to 2.8.9. Changelog Sourced from hosted-git-info's changelog. 2.8.9 (2021-04-07) Bug Fixes backport regex fix from #76 (29adfe5), closes #84 Commits 8d4b369 chore(release): 2.8.9 29adfe5 fix: backport...

dependencies

I wanted to setup some mocks before actual test cases, but it seems that beforeEach/beforeAll methods are not called at all. Here's sample of my code: ``` describe('elementInfoLoad', () =>...

In my saga I have code that looks like this: ``` try { // removed for brevity } catch (e) { const errorMsg = e && e.response ? `Error ${e.response.status}...

# Add support for pending cases ```javascript const it = sagaHelper(...); it('Pending when no function is passed'); it.skip('Pending when skip method is called', result => {}) ``` ## Result: ```...

When trying to test our React Native application's saga's I am getting the following error. ``` Couldn't find preset "env" relative to directory ...node_modules/redux-saga-testing"```. After looking on the web I...

I use the `getContext` feature in `redux-saga` to help manage endpoints and imports. Is there any support to write tests for these? ```typescript const authApi = yield getContext('authApi') // contains...

Hi, first of all thank you for taking the time to create and release this package. Saved a lot of time for me. **Question** How to test a _race_ in...

@antoinejaussoin this library is awesome !! can you help me with below scenario to write test case where am calling actions in array of yield. ```javascript function* testSagas() { yield[...

Bumps [minimist](https://github.com/minimistjs/minimist) from 1.2.5 to 1.2.8. Changelog Sourced from minimist's changelog. v1.2.8 - 2023-02-09 Merged [Fix] Fix long option followed by single dash [#17](https://github.com/minimistjs/minimist/issues/17) [Tests] Remove duplicate test [#12](https://github.com/minimistjs/minimist/issues/12) [Fix]...

dependencies