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