UNPKG

@navinc/base-react-components

Version:
11 lines (9 loc) 327 B
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() }) })