import { PrivacyLink } from "content-src/components/DiscoveryStreamComponents/PrivacyLink/PrivacyLink"; import React from "react"; import { shallow } from "enzyme"; describe("", () => { let wrapper; let sandbox; beforeEach(() => { sandbox = sinon.createSandbox(); wrapper = shallow( ); }); afterEach(() => { sandbox.restore(); }); it("should render", () => { assert.ok(wrapper.exists()); assert.ok(wrapper.find(".ds-privacy-link").exists()); }); });