UNPKG

@navinc/base-react-components

Version:
12 lines (10 loc) 375 B
import React from 'react' import { render } from '@testing-library/react' import ProgressBar from './progress-bar.js' describe('<ProgressBar />', () => { const backgroundColor = 'rgb(135, 237, 222)' it('renders', () => { const { getByTestId } = render(<ProgressBar bgColor={backgroundColor} percent={60} />) expect(getByTestId('progress-bar:step-fill')) }) })