Kene-s-Cribs-Website/src/homePage/homePage.test.js

11 lines
253 B
JavaScript
Raw Normal View History

2021-03-28 18:49:31 -04:00
import React from "react";
import { shallow } from "enzyme";
import HomePage from "./homePage";
2021-03-28 18:49:31 -04:00
describe("HomePage", () => {
2021-03-28 18:49:31 -04:00
test("matches snapshot", () => {
const wrapper = shallow(<HomePage />);
2021-03-28 18:49:31 -04:00
expect(wrapper).toMatchSnapshot();
});
});