mirror of
https://github.com/lucide-icons/lucide.git
synced 2025-12-16 21:17:43 +01:00
* Add preact package * Fix types * update types * fix types * remove dependecies * bump version * improve test setup for react as well * Add workflow for preact * Fix types * bump version * Add white space * remove forward ref * bump package * Fix types * Fix types * bump version * Remove proptypings * Test new version * Add some extra documentation
32 lines
892 B
JavaScript
32 lines
892 B
JavaScript
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}
|
|
/>,
|
|
);
|
|
|
|
const { attributes } = getByTestId(testId);
|
|
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();
|
|
});
|
|
})
|