/** * @jest-environment jsdom */ import { render, screen } from '@testing-library/react'; import FollowButton from '../button'; describe( 'FollowButton', () => { test( 'should apply a custom follow label', () => { render( ); expect( screen.getByText( 'Follow Tag' ) ).toBeVisible(); } ); } );