import { render } from "@testing-library/react-native"; import React from "react"; import { CompanyAvatar } from "./"; describe("CompanyAvatar", () => { it("Snapshot", () => { const { toJSON } = render(); expect(toJSON()).toMatchSnapshot(); }); });