2022-12-04 22:38:56 +01:00
|
|
|
import { describe, it, expect } from 'vitest';
|
2022-06-12 22:31:05 +02:00
|
|
|
import React from 'react';
|
|
|
|
|
import { render } from '@testing-library/react'
|
|
|
|
|
import { Grid } from '../src/icons'
|
|
|
|
|
|
|
|
|
|
describe('Using lucide icon components', () => {
|
|
|
|
|
it('should render an component', () => {
|
|
|
|
|
const { container } = render( <Grid/> );
|
|
|
|
|
|
|
|
|
|
expect( container.innerHTML ).toMatchSnapshot();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('should adjust the size, stroke color and stroke width', () => {
|
|
|
|
|
const testId = 'grid-icon';
|
|
|
|
|
const { container, getByTestId } = render(
|
|
|
|
|
<Grid
|
|
|
|
|
data-testid={testId}
|
|
|
|
|
size={48}
|
|
|
|
|
stroke="red"
|
|
|
|
|
strokeWidth={4}
|
|
|
|
|
/>,
|
|
|
|
|
);
|
|
|
|
|
|
2022-12-04 22:38:56 +01:00
|
|
|
const { attributes } = getByTestId(testId) as unknown as{ attributes: Record<string, { value: string }>};
|
2022-06-12 22:31:05 +02:00
|
|
|
expect(attributes.stroke.value).toBe('red');
|
|
|
|
|
expect(attributes.width.value).toBe('48');
|
|
|
|
|
expect(attributes.height.value).toBe('48');
|
|
|
|
|
expect(attributes['stroke-width'].value).toBe('4');
|
|
|
|
|
|
|
|
|
|
expect( container.innerHTML ).toMatchSnapshot();
|
|
|
|
|
});
|
|
|
|
|
})
|