it('render empty state', () => {
    chartService.getDonutChartConfig = jest.fn(() => emptyData);
    const wrapper = shallow(<DonutChart data={emptyData} />);

    expect(wrapper).toMatchSnapshot();