Kene-s-Cribs-Website/src/listings-page/single-listing-4/listing-page-4.test.js

10 lines
271 B
JavaScript

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