/**
* @jest-environment jsdom
*/
import { render } from '@testing-library/react';
import { Count } from '../';
describe( 'Count', () => {
test( 'should call provided as prop numberFormat function', () => {
const numberFormatSpy = jest.fn();
render( );
expect( numberFormatSpy ).toHaveBeenCalledWith( 23 );
} );
test( 'should call `i18n.numberFormat` with `compact` if `true`', () => {
const { container } = render( );
expect( container.firstChild ).toHaveTextContent( '1K' );
} );
test( 'should render with primary class', () => {
const { container } = render( {} } /> );
expect( container.firstChild ).toHaveClass( 'is-primary' );
} );
} );