I am new to jest and trying to figure out some basic stuff in my following code
import * as actions from './IncrementalSearchActions';
describe('Incremental Search Actions', () => {
it('Should create an incremental search action')
});
The questions/confusions I have around this are
Are your test files under a the "test" folder? make sure jest is install properly and listed on your package.json and under scripts have:
"test": "jest --coverage",
you can run the script with npm test