import React from "react" import { mount } from "enzyme" import ChannelSummary from "./../src/components/ChannelSummary" describe("ChannelSummary component", () => { const component = mount( ) it("Should render correctly", () => { expect(component).toMatchSnapshot() }) })