UNPKG

@navinc/base-react-components

Version:
12 lines (10 loc) 376 B
import '@testing-library/jest-dom/extend-expect' import React from 'react' import { render, screen } from '../tests/with-app-context.js' import { LoadingDots } from './loading-dots.js' describe('<LoadingDots />', () => { it('renders', () => { render(<LoadingDots data-testid="loading-dots" />) expect(screen.getByTestId('loading-dots')).toBeInTheDocument() }) })