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
- I get an error saying describe is not defined, how do I import the reuqired module?
- Is this supposed to be used with Karma/Jasmine?