it('pre-selects the first property if it is passed in the filter', () => {
    const props = { ...baseProps, filters: { country: 'United States' } };
    const wrapper = shallow(<CallToolDrillDown {...props} />);
    expect(toJSON(wrapper)).toMatchSnapshot('CallToolDrillDownWithFilters');
  });