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

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