libreria-ui
Version:
Libreria UI de componentes creada por los Platzinautas de Rick Sanchez
18 lines (17 loc) • 507 B
JavaScript
import { render } from '@testing-library/react';
import Text from './Text'
describe('@component/Text', () => {
it('Test on Text', () => {
//arrange
const { getByRole } = render (
<Text
component="h1"
>
Platzi Aventura con Rick and Mortys
</Text>)
//act
const TextTest = getByRole('heading', {name: /Platzi Aventura con Rick and Morty/i});
//assert
expect(TextTest).toBeDefined();
})
})