Kene-s-Cribs-Website/src/shared-components/navBar/navBar.test.js

11 lines
245 B
JavaScript
Raw Normal View History

2021-03-28 18:49:31 -04:00
import React from "react";
import { shallow } from "enzyme";
import NavBar from "./navBar";
describe("NavBar", () => {
test("matches snapshot", () => {
const wrapper = shallow(<NavBar />);
expect(wrapper).toMatchSnapshot();
});
});