UNPKG

@navinc/base-react-components

Version:
15 lines (11 loc) 340 B
import React from 'react' import { render, screen } from '../tests/with-app-context' import { Text } from './text.js' describe('Base Components: Text', () => { describe('render', () => { it('renders Text', () => { render(<Text>test text</Text>) expect(screen.getByText('test text').tagName).toBe('SPAN') }) }) })