UNPKG

@navinc/base-react-components

Version:
17 lines (15 loc) 352 B
import React from 'react' import { render } from '@testing-library/react' import { List } from './list.js' describe('<List />', () => { describe('List', () => { it('renders', () => { const { getByText } = render( <List element="ol"> <li>hello</li> </List> ) expect(getByText(/hello/i)) }) }) })