import React from "react"; import SideBar from "./SideBar"; import "@testing-library/jest-dom" import {shallow} from "enzyme"; describe('', function () { it('renders without crashing ', function () { const wrapper = shallow(); wrapper.unmount(); }); it('renders childs correctly', function () { const wrapper = shallow(test); expect(wrapper.children().text()).toBe("test"); }); });