UNPKG

basico-creacion-api

Version:

Esta es una libreria en la que tu podras importar increibles componentes y consumir una API

12 lines (11 loc) 406 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(); }) })