UNPKG

basico-libreriasui

Version:

Esta es una libreria en la que tu podras importar componentes de mi practica de platzi

15 lines (13 loc) 410 B
import { render } from '@testing-library/react'; import Text from './Text'; describe('@component/Text', () => { it('ñsirjngkjnerinrgfijn', () => { const { getByRole } = render( <Text component="h1">Platzi Aventura con Rick and Morty</Text> ); const textTest = getByRole('heading', { name: /Platzi Aventura con Rick and Morty/i, }); expect(textTest).toBeDefined(); }); });