File size: 381 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
/**
* Test sagas
*/
/* eslint-disable redux-saga/yield-effects */
// import { take, call, put, select } from 'redux-saga/effects';
// import {{ camelCase name }}Saga from '../saga';
// const generator = {{ camelCase name }}Saga();
describe('{{ camelCase name }}Saga Saga', () => {
it('Expect to have unit tests specified', () => {
expect(true).toEqual(false);
});
});
|