Kene-s-Cribs-Website/src/listings-page/ListingsPage.test.js
2021-03-31 01:17:00 -04:00

10 lines
269 B
JavaScript

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