Kene-s-Cribs-Website/src/shared-components/footer-component/Footer.test.js

10 lines
245 B
JavaScript

import React from "react";
import { shallow } from "enzyme";
import Footer from "./Footer";
describe("Footer", () => {
test("matches snapshot", () => {
const wrapper = shallow(<Footer />);
expect(wrapper).toMatchSnapshot();
});
});