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