react-code-dataset
/
react-boilerplate
/app
/containers
/HomePage
/tests
/__snapshots__
/saga.test.js.snap
| // Jest Snapshot v1, https://goo.gl/fbAQLP | |
| exports[`getRepos Saga should call the repoLoadingError action if the response errors 1`] = ` | |
| Object { | |
| "@@redux-saga/IO": true, | |
| "combinator": false, | |
| "payload": Object { | |
| "args": Array [], | |
| "selector": [Function], | |
| }, | |
| "type": "SELECT", | |
| } | |
| `; | |
| exports[`getRepos Saga should call the repoLoadingError action if the response errors 2`] = ` | |
| Object { | |
| "@@redux-saga/IO": true, | |
| "combinator": false, | |
| "payload": Object { | |
| "args": Array [ | |
| "https://api.github.com/users/mxstbr/repos?type=all&sort=updated", | |
| ], | |
| "context": null, | |
| "fn": [Function], | |
| }, | |
| "type": "CALL", | |
| } | |
| `; | |
| exports[`getRepos Saga should dispatch the reposLoaded action if it requests the data successfully 1`] = ` | |
| Object { | |
| "@@redux-saga/IO": true, | |
| "combinator": false, | |
| "payload": Object { | |
| "args": Array [], | |
| "selector": [Function], | |
| }, | |
| "type": "SELECT", | |
| } | |
| `; | |
| exports[`getRepos Saga should dispatch the reposLoaded action if it requests the data successfully 2`] = ` | |
| Object { | |
| "@@redux-saga/IO": true, | |
| "combinator": false, | |
| "payload": Object { | |
| "args": Array [ | |
| "https://api.github.com/users/mxstbr/repos?type=all&sort=updated", | |
| ], | |
| "context": null, | |
| "fn": [Function], | |
| }, | |
| "type": "CALL", | |
| } | |
| `; | |