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(); }); });