10 lines
245 B
JavaScript
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();
|
|
});
|
|
});
|