import { render } from '@testing-library/react';
import React from 'react';
import { SpinnerInfinity } from '../SpinnerInfinity';
describe('SpinnerInfinity', () => {
const color = 'red';
it('matches the snapshot', () => {
const { container } = render(
,
);
expect(container).toMatchSnapshot();
});
it('matches the snapshot with default props', () => {
const { container } = render();
expect(container).toMatchSnapshot();
});
it('renders null if disabled', () => {
const { container } = render();
expect(container.firstChild).toBe(null);
});
it('renders still if specified', () => {
const { container } = render();
const uses = container.querySelectorAll('use');
expect(uses[1].style.animation).toBe('');
});
it('passes props to styles', () => {
const size = '20%';
const thickness = 40;
const speed = 50;
const { container } = render(
,
);
const uses = container.querySelectorAll('use');
const strokeWidth = `${7 * (thickness / 100)}`;
expect(container.firstChild).toHaveStyle({ width: size });
expect(uses[0]).toHaveAttribute('stroke-width', strokeWidth);
expect(uses[1]).toHaveAttribute('stroke-width', strokeWidth);
expect(uses[1].style.animation.includes(`${140 / speed}`)).toBe(true);
});
it('passes svg props overriding styles', () => {
const className = 'test-class';
const { container } = render(
,
);
expect(container.firstChild).toHaveClass(className);
expect(container.firstChild).toHaveStyle({ color });
});
});