blob: 03d54f7f6b2c3225b65abdf763e44b3dd2af025c (
plain)
1
2
3
4
5
6
7
8
9
|
import { render } from '@test-utils';
import CCBySA from './cc-by-sa';
describe('CCBySA', () => {
it('renders a CC BY SA icon', () => {
const { container } = render(<CCBySA />);
expect(container).toBeDefined();
});
});
|