import { shallow } from "enzyme"; import _ from "lodash"; import React from "react"; import { FacetCheckbox } from "../../../../search/facets/components/FacetCheckbox"; const facetConfiguration = { showCount: true, }; const mockDocumentAttributeValue = { StringValue: "mockStringValue1", }; describe("A ", () => { it("renders correctly", () => { const component = shallow( ); expect(component).toMatchSnapshot(); }); it("renders without count correctly", () => { const component = shallow( ); expect(component).toMatchSnapshot(); }); it("renders disableAdd selected correctly", () => { const component = shallow( ); expect(component).toMatchSnapshot(); }); it("renders disable not selected correctly", () => { const component = shallow( ); expect(component).toMatchSnapshot(); }); });