aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/atoms/icons/cc-by-sa.test.tsx
blob: 2bcb4371cc5ff33831550ef3c673e7e3878ab9bb (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();
  });
});