UNPKG

basico-creacion-libreriasui

Version:

Esta es una libreria en la que tu podras importar increibles Platzi componentes y viajar por el multiverso al gran estilo de Rick Sanchez

16 lines (14 loc) 392 B
import { render } from '@testing-library/react' import Button from './Button' describe('@components/Button', () => { it('Given a normal component call it should render component', () => { //arrange const { getByRole } = render( <Button type="button" /> ); //act const buttonTest = getByRole('button') //assert expect(buttonTest).toBeDefined(); }); });