aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/atoms/icons/magnifying-glass.test.tsx
blob: 5cff75bc38bf4fac9e773a6f6f91b1fa8ad3f405 (plain)
1
2
3
4
5
6
7
8
9
10
import { describe, expect, it } from '@jest/globals';
import { render } from '../../../../tests/utils';
import { MagnifyingGlass } from './magnifying-glass';

describe('MagnifyingGlass', () => {
  it('renders a magnifying glass icon', () => {
    const { container } = render(<MagnifyingGlass />);
    expect(container).toBeDefined();
  });
});