import { actions, reducers, types } from '../index'; describe('actions', (): void => { it('should exist', (): void => { expect(actions).toBeDefined(); }); }); describe('reducers', (): void => { it('should exist', (): void => { expect(reducers).toBeDefined(); }); }); describe('types', (): void => { it('should exist', (): void => { expect(types).toBeDefined(); }); });