| 1234567891011121314151617181920212223242526 |
- import { testSaga } from 'redux-saga-test-plan';
- import {
- rootSaga
- } from 'sagas';
- import {
- crudSaga
- } from 'sagas/crud';
- import {
- annoySaga
- } from 'sagas/annoy';
- describe('Root saga', () => {
- it('should fork other sagas', () => {
- testSaga(rootSaga)
- .next()
- .fork(crudSaga)
- .next()
- .fork(annoySaga)
- .next()
- .isDone();
- });
- });
|