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

    expect(wrapper).toMatchSnapshot();