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

10 lines
271 B
JavaScript

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