Kene-s-Cribs-Website/src/agent-page/agent-page.test.js

10 lines
258 B
JavaScript

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