import { getCityList } from 'redux/actions/getFavoriteCity'; describe("Actions tests", () => { it('should create an action with FETCH_FAVORITE_CITY type', () => { expect(getFavoriteCity().toEqual({type: 'FETCH_FAVORITE_CITY'})); }) })