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

10 lines
266 B
JavaScript

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