// It renders the component on the page import * as React from "react"; import { render, screen } from "@testing-library/react"; import { ShareButton } from "./live"; import settings from "./settings"; describe("ShareButton (Rendering)", () => { it(`Should render on the page`, () => { const testId = "WC-SHAREBUTTON-LIVE"; const { debug } = render(); expect(screen.queryByTestId(testId)).toBeTruthy(); }); });