Kene-s-Cribs-Website/src/listings-page/single-listing-3/listing-page-3.test.js
2021-04-07 20:11:28 -04:00

10 lines
271 B
JavaScript

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