mirror of
https://github.com/strapi/strapi.git
synced 2025-07-19 15:06:11 +00:00
16 lines
347 B
Handlebars
Executable File
16 lines
347 B
Handlebars
Executable File
/**
|
|
* Test sagas
|
|
*/
|
|
|
|
/* eslint-disable redux-saga/yield-effects */
|
|
// import { take, call, put, select } from 'redux-saga/effects';
|
|
// import { defaultSaga } from '../saga';
|
|
|
|
// const generator = defaultSaga();
|
|
|
|
describe('defaultSaga Saga', () => {
|
|
it('Expect to have unit tests specified', () => {
|
|
expect(true).toEqual(false);
|
|
});
|
|
});
|