import { shallow } from "enzyme";
import _ from "lodash";
import React from "react";
import { DateFacet } from "../../../../search/facets/components/DateFacet";
import { mockDateDocumentAttributeValueCountPairs } from "../../../mock/mock";
describe("A ", () => {
it("Renders correctly", () => {
const component = shallow(
);
expect(component).toMatchSnapshot();
});
});