aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/atoms/icons/cc-by-sa.test.tsx
blob: a23059ddcacad3a19b866bb0921941c0f71d8fe5 (plain)
1
2
3
4
5
6
7
8
9
import { render, screen } from '../../../../tests/utils';
import { CCBySA } from './cc-by-sa';

describe('CCBySA', () => {
  it('renders a CC BY SA icon', () => {
    render(<CCBySA />);
    expect(screen.getByTitle('CC BY SA')).toBeInTheDocument();
  });
});