Sha256: 2370ae578463c656fe0887e64f64c041d7e6c889f4b113ce33b2cabd682d1ef1
Contents?: true
Size: 509 Bytes
Versions: 956
Compression:
Stored size: 509 Bytes
Contents
import React from 'react' import { render, screen } from '../utilities/test-utils' import StatValue from './_stat_value' test('it renders the component with the value', () => { render( <StatValue value={1048} /> ) const kit = screen.getByText('1048') expect(kit).toBeTruthy() }) test('it renders the component with the unit', () => { render( <StatValue unit="appt" value="5,294" /> ) const kit = screen.getByText('appt') expect(kit).toBeTruthy() })
Version data entries
956 entries across 956 versions & 1 rubygems