import { render } from '@testing-library/react';
import Bubble from '../bubble';
describe('Long number component', () => {
it('should render with defaults', () => {
const { asFragment } = render({10});
expect(asFragment()).toMatchSnapshot();
});
it('should render without children', () => {
const { asFragment } = render();
expect(asFragment()).toMatchSnapshot();
});
it('should render bigger than 100', () => {
const { asFragment } = render({101});
expect(asFragment()).toMatchSnapshot();
});
it('should render different size', () => {
const { asFragment } = render({101});
expect(asFragment()).toMatchSnapshot();
});
});